-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (37 loc) · 915 Bytes
/
tests.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
name: Tests
on:
workflow_dispatch:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3 - --version 1.8.4
- name: Set up Poetry environment
run: |
poetry cache clear PyPI --all
poetry install --no-root
- name: Run ruff
run: |
poetry run ruff check .
- name: Run ruff format
run: |
poetry run ruff format --check .
- name: Run mypy
run: |
poetry run mypy --show-error-codes .
- name: Run tests
run: |
poetry run pytest