forked from go-macaroon-bakery/py-macaroon-bakery
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (50 loc) · 1.03 KB
/
tests.yaml
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
name: test
on:
push:
branches:
- "master"
- "feature/*"
- "hotfix/*"
- "release/*"
- "renovate/*"
pull_request:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: make setup
- name: Run Linters
run: make lint
test:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: |
3.8
3.9
3.10
3.11
3.12
cache: 'pip'
- name: Install dependencies
run: |
make setup
pip install tox-gh
- name: Run tests
run: tox -m ci
env:
PYTEST_ADDOPTS: "--no-header -vv -rN"