-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (53 loc) · 1.46 KB
/
tests-and-checks.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
45
46
47
48
49
50
51
52
53
54
name: Pre-build Checks & Tests
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened]
branches: [main]
jobs:
unit-tests:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v4
with:
python-version: '3.12'
allow-prereleases: true
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Dependencies
run: |
pip install --upgrade pip
pip install --no-cache-dir "poetry==1.8.3"
poetry install --no-interaction --no-ansi
- name: Execute Tests
run: poetry run task tests
lint:
name: Code Lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v4
with:
python-version: '3.12'
allow-prereleases: true
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Dependencies
run: |
pip install --upgrade pip
pip install --no-cache-dir "poetry==1.8.3"
poetry install --no-interaction --no-ansi
- name: Run ruff
run: poetry run task ruff-lint
- name: Run mypy
run: poetry run task mypy-lint
- name: Run poetry check
run: poetry run task poetry-check
- name: Run pip check
run: poetry run task pip-check