-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (39 loc) · 1.19 KB
/
check.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
41
42
43
44
45
46
47
48
name: lint & test
on:
push:
branches: [dev]
pull_request:
branches: [dev]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install rye
uses: eifinger/setup-rye@v1
id: setup-rye
with:
enable-cache: true
cache-prefix: venv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/pyproject.toml') }}
- name: set rye python
run: |
rye pin cpython@${{ matrix.python-version }}
- name: Install dependencies
if: steps.setup-rye.outputs.cache-hit == 'true'
run: |
rye sync --all-features
- name: Load cached pre-commit
id: cached-pre-commit-dependencies
uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: precommit-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Code checks
run: |
rye run pre-commit run --all-files --show-diff-on-failure
- name: Test with pytest
run: |
rye run pytest