We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f14428a commit 746d66eCopy full SHA for 746d66e
1 file changed
.github/workflows/linters.yml
@@ -5,20 +5,20 @@ 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 Poetry environment
16
+ uses: 5yutan5/setup-poetry-env@v1.1.0
17
18
python-version: 3.12
- - uses: abatilo/actions-poetry@v2
- - name: Install
- run: |
19
- cd basic_games
20
- poetry --no-root install
+ poetry-virtualenvs-in-project: true
+ poetry-install-dependencies: false
21
+ - name: Install dependencies
22
+ run: poetry --no-root install
23
- name: Lint
24
- poetry run poe lint
+ run: poetry run poe lint
0 commit comments