We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8f00a1c + 12cf884 commit a1eb303Copy full SHA for a1eb303
1 file changed
.github/workflows/lint.yml
@@ -2,7 +2,7 @@ name: Lint
2
3
on:
4
push:
5
- branch:
+ branches:
6
- master
7
pull_request:
8
workflow_dispatch:
@@ -11,13 +11,13 @@ jobs:
11
lint:
12
runs-on: ubuntu-latest
13
steps:
14
- - uses: actions/checkout@v3
15
- - name: Install Poetry
16
- run: curl -sSL https://install.python-poetry.org | python3 -
17
- - name: Set up Python
18
- uses: actions/setup-python@v4
19
- with:
20
- python-version: 3.11
21
- cache: 'poetry'
22
- - run: poetry install
23
- - run: make lint
+ - uses: actions/checkout@v4
+ - name: Install Poetry
+ run: curl -sSL https://install.python-poetry.org | python3 -
+ - name: Set up Python
+ uses: actions/setup-python@v5
+ with:
+ python-version: 3.13
+ cache: 'poetry'
+ - run: poetry install
+ - run: make lint
0 commit comments