-
Notifications
You must be signed in to change notification settings - Fork 1
68 lines (62 loc) · 1.64 KB
/
Copy pathci.yml
File metadata and controls
68 lines (62 loc) · 1.64 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
name: Continuous integration
on:
push:
branches: "main"
pull_request:
schedule:
- cron: 0 0 * * 0
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: ["3.7", "3.8", "3.9"]
name: Run tests with Python ${{ matrix.python }}
steps:
- uses: actions/checkout@v3
- name: Get tox environment name
id: tox-env
uses: actions/github-script@v4
with:
script: |
let version_code = '${{ matrix.python }}'.split('.').join('');
return `py${version_code}-linux`;
result-encoding: string
- name: Copy requirements file
shell: bash
run: |
cp requirements/${{ steps.tox-env.outputs.result }}-requirements.txt requirements.txt
ls -R
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
cache: "pip"
- name: Install tox
run: pip install tox
- name: Get system information
run: |
set -x
uname -a
lsb_release -a
python --version
pip --version
tox --version
- name: Run tests
run: tox -v -e ${{ steps.tox-env.outputs.result }}
checks:
runs-on: ubuntu-latest
strategy:
fail-fast: false
name: Run checks with Python 3.9
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Install tox
run: pip install tox
- name: Run checks
run: tox -v -e check