-
Notifications
You must be signed in to change notification settings - Fork 6
44 lines (39 loc) · 1.04 KB
/
test.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
# vim: ft=yaml
name: test
on:
- pull_request
- push
jobs:
test:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
include:
- { salt: "3007", python: "3.10" }
- { salt: "3006", python: "3.10" }
steps:
- uses: actions/checkout@v4
- uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ matrix.python }}
- run: pdm install --dev --no-self --no-default
- run: pdm run tox -e py3-salt${{ matrix.salt }} -- -vv
ruff-check:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: pdm-project/setup-pdm@v4
with:
python-version: "3.12"
- run: pdm install --dev --no-self --no-default
- run: pdm run ruff check --no-fix --diff
ruff-format:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: pdm-project/setup-pdm@v4
with:
python-version: "3.12"
- run: pdm install --dev --no-self --no-default
- run: pdm run ruff format --diff --check