We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d65f78b commit aa0629aCopy full SHA for aa0629a
.github/workflows/lint_and_test.yml
@@ -9,17 +9,25 @@ jobs:
9
lint:
10
runs-on: ubuntu-latest
11
concurrency:
12
- group: ${{ github.workflow }}-${{ github.job }}
+ group: ${{ github.event_name }}-${{ github.workflow }}-${{ github.ref_name }}-lint
13
cancel-in-progress: true
14
timeout-minutes: 20
15
- container:
16
- image: ghcr.io/thombashi/python-ci:3.10
17
18
steps:
19
- uses: actions/checkout@v4
20
21
- - name: Lint
22
- run: make check
+ - uses: actions/setup-python@v5
+ with:
+ python-version: "3.13"
+ cache: pip
23
+ cache-dependency-path: |
24
+ setup.py
25
+ **/*requirements.txt
26
+ tox.ini
27
+
28
+ - run: make setup-ci
29
30
+ - run: make check
31
32
unit-test:
33
runs-on: ${{ matrix.os }}
0 commit comments