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