-
Notifications
You must be signed in to change notification settings - Fork 11
44 lines (35 loc) · 1021 Bytes
/
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
name: Continuous builds
on:
push:
branches: [ master, development ]
pull_request:
branches: [ master, development ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Print refs
run: |
echo "github.ref is: ${{ github.ref }}"
echo "github.base_ref is: ${{ github.base_ref }}"
- name: Update pip, install package
run: |
python -m pip install --upgrade pip
echo "Using development dependencies"
pip install .[dev]
- name: Run tests
run: |
./test.sh
- name: Lint with flake8
run: |
pip install flake8
flake8 . --count --exit-zero --show-source --max-line-length=127 --statistics