-
Notifications
You must be signed in to change notification settings - Fork 3
56 lines (48 loc) · 1.23 KB
/
python-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Running Python CI jobs
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
schedule:
- cron: '0 0 * * 3'
jobs:
python-run:
runs-on: ubuntu-latest
steps:
- name: Get repository
uses: actions/checkout@v4
- name: Set up Python environment
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install .
pip install yapf pytest pytest-cov
- name: Lint with yapf
run: |
./.github/check_code_formatting.sh
- name: Test with pytest
run: |
./.github/run_tests.sh
installation-test:
runs-on: ubuntu-latest
steps:
- name: Get repository
uses: actions/checkout@v3
- name: Set up Python environment
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install .
- name: Show help
run: |
# we should be able to execute from any directory now
cd /tmp/
raviewer --help