Skip to content

Commit a1eb303

Browse files
authored
Merge pull request #320 from C0rn3j/touchup
CI: Fix branch syntax, bump action and python versions to current, fix indent
2 parents 8f00a1c + 12cf884 commit a1eb303

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/lint.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Lint
22

33
on:
44
push:
5-
branch:
5+
branches:
66
- master
77
pull_request:
88
workflow_dispatch:
@@ -11,13 +11,13 @@ jobs:
1111
lint:
1212
runs-on: ubuntu-latest
1313
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
14+
- uses: actions/checkout@v4
15+
- name: Install Poetry
16+
run: curl -sSL https://install.python-poetry.org | python3 -
17+
- name: Set up Python
18+
uses: actions/setup-python@v5
19+
with:
20+
python-version: 3.13
21+
cache: 'poetry'
22+
- run: poetry install
23+
- run: make lint

0 commit comments

Comments
 (0)