We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88cf272 commit 5a2207fCopy full SHA for 5a2207f
1 file changed
.github/workflows/lint-and-test.yml
@@ -3,17 +3,20 @@ name: Lint and test
3
on:
4
push:
5
6
+env:
7
+ REPO_PATH: "/__w/python-amazon-paapi/python-amazon-paapi"
8
+
9
jobs:
10
11
isort:
12
runs-on: ubuntu-latest
13
container:
14
image: sergioteula/pytools
15
volumes:
- - /__w/python-amazon-paapi/python-amazon-paapi:/code
16
+ - ${{env.REPO_PATH}}:/code
17
steps:
18
- name: Check out code
19
uses: actions/checkout@v2
20
21
- name: Check imports order
- run: ls -la && cd scripts && ls -la && ./check_isort
22
+ run: ./scripts/check_isort
0 commit comments