forked from wheerd/multiset
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (35 loc) · 935 Bytes
/
python-test.yml
File metadata and controls
37 lines (35 loc) · 935 Bytes
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
name: Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10' ]
name: Run tests
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: make init
- name: Lint
run: make check
if: matrix.python-version == 'disabled'
- name: Run tests
run: make test
- name: Upload coverage
run: pip install coveralls && make coverage && coveralls --service=github-actions
if: matrix.python-version == '3.8'
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
GITHUB_TOKEN: $COVERALLS_REPO_TOKEN