-
Notifications
You must be signed in to change notification settings - Fork 10
42 lines (38 loc) · 1.07 KB
/
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
name: CI
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: psf/black@stable
with:
options: "--check --diff"
src: "tiler tests"
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
# 3.6 will reach EoL in December 2021
# https://devguide.python.org/#status-of-python-branches
python-version: [ "3.7", "3.8", "3.9", "3.10" ]
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install test dependencies
run: |
python -m pip install --upgrade pip
pip install .[test]
pip install coveralls
- name: Run tests
run: coverage run -m pytest -v
- name: Submit coveralls
if: github.event_name != 'pull_request'
run: coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_TOKEN }}