-
Notifications
You must be signed in to change notification settings - Fork 35
50 lines (48 loc) · 1.43 KB
/
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
48
49
50
name: Tests
on:
push:
branches:
- main
pull_request:
schedule:
- cron: "0 7 * * 1,3"
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
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 basic dependencies
run: |
python -m pip install --upgrade pip
pip install wheel
pip install -e .[dev]
- name: Mypy strict without optional dependencies
run: |
mypy --strict tests/main/clients/*/expected_client
mypy --strict tests/main/graphql_schemas/*/expected_schema.py
mypy --strict ariadne_codegen/client_generators/dependencies
- name: Install optional dependencies
run: |
pip install -e .[subscriptions,opentelemetry,dev]
- name: Pytest
run: |
pytest
- name: Linters
run: |
pylint ariadne_codegen tests
mypy ariadne_codegen --ignore-missing-imports
black --check .
isort . --check-only
- name: Mypy strict with all dependencies
run: |
mypy --strict tests/main/clients/*/expected_client
mypy --strict tests/main/graphql_schemas/*/expected_schema.py
mypy --strict ariadne_codegen/client_generators/dependencies