We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f14428a commit 2788ac4Copy full SHA for 2788ac4
1 file changed
.github/workflows/linters.yml
@@ -5,20 +5,16 @@ on: [push, pull_request]
5
jobs:
6
checks:
7
runs-on: ubuntu-latest
8
+ defaults:
9
+ run:
10
+ working-directory: basic_games
11
steps:
12
- uses: actions/checkout@v4
13
with:
- path: "basic_games"
- - name: Set up Python
- uses: actions/setup-python@v2
14
+ path: basic_games
15
+ - name: Setup and Cache Python Poetry
16
+ uses: packetcoders/action-setup-cache-python-poetry@v1.2.0
17
18
python-version: 3.12
- - uses: abatilo/actions-poetry@v2
- - name: Install
- run: |
19
- cd basic_games
20
- poetry --no-root install
21
- name: Lint
22
23
24
- poetry run poe lint
+ run: poetry run poe lint
0 commit comments