-
Notifications
You must be signed in to change notification settings - Fork 15
46 lines (43 loc) · 1.23 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
name: Tests
on:
push: ~
pull_request: ~
jobs:
pytest:
name: Python on ${{ matrix.python }} and Sphinx ${{ matrix.sphinx }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
sphinx: [ "^4", "^5", "^6", "^7" ]
steps:
- uses: actions/checkout@v4
- name: Set Up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Update build deps
run: poetry run python -m pip install --upgrade pip setuptools
- name: Install dependencies
run: poetry install
- name: Set sphinx version
run: poetry add sphinx@${{ matrix.sphinx }}
- name: Run Tests
run: poetry run pytest
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set Up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install Dependencies
run: poetry install
- uses: pre-commit/[email protected]