-
Notifications
You must be signed in to change notification settings - Fork 21
40 lines (37 loc) · 1 KB
/
test.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
name: Run Unit Test via Pytest
on:
push:
branches: ["main"]
tags-ignore: ["**"]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9.20"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox>=4.19
- name: Check for lint
run: |
cd backend
- tox -e format,isort,lint
- name: Run unit tests
run: |
cd backend
tox -e unit
- name: Publish coverage data
uses: actions/upload-artifact@v4
with:
name: Coverage for ${{ github.event.head_commit.id }}
path: backend/.tox/unit/tmp/coverage.db
if-no-files-found: warn
retention-days: 30