Skip to content

Commit 17f173c

Browse files
committed
nm cache doesn't work with Poetry
1 parent 030d7aa commit 17f173c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
- uses: actions/setup-python@v2
1919
with:
2020
python-version: ${{ matrix.python }}
21-
cache: "pip"
2221
- run: pip install poetry "Django<2.1"
22+
- run: poetry install
2323
- run: make test
2424
test-dj21:
2525
strategy:
@@ -33,8 +33,8 @@ jobs:
3333
- uses: actions/setup-python@v2
3434
with:
3535
python-version: ${{ matrix.python }}
36-
cache: "pip"
3736
- run: pip install poetry "Django<2.2"
37+
- run: poetry install
3838
- run: make test
3939
test-dj22:
4040
strategy:
@@ -48,8 +48,8 @@ jobs:
4848
- uses: actions/setup-python@v2
4949
with:
5050
python-version: ${{ matrix.python }}
51-
cache: "pip"
5251
- run: pip install poetry "Django<2.3"
52+
- run: poetry install
5353
- run: make test
5454
test-dj30:
5555
strategy:
@@ -63,8 +63,8 @@ jobs:
6363
- uses: actions/setup-python@v2
6464
with:
6565
python-version: ${{ matrix.python }}
66-
cache: "pip"
6766
- run: pip install poetry "Django<3.1"
67+
- run: poetry install
6868
- run: make test
6969
test-dj31:
7070
strategy:
@@ -78,8 +78,8 @@ jobs:
7878
- uses: actions/setup-python@v2
7979
with:
8080
python-version: ${{ matrix.python }}
81-
cache: "pip"
8281
- run: pip install poetry "Django<3.2"
82+
- run: poetry install
8383
- run: make test
8484
test-dj32:
8585
strategy:
@@ -93,8 +93,8 @@ jobs:
9393
- uses: actions/setup-python@v2
9494
with:
9595
python-version: ${{ matrix.python }}
96-
cache: "pip"
9796
- run: pip install poetry "Django<3.3"
97+
- run: poetry install
9898
- run: make test
9999

100100
lint:

0 commit comments

Comments
 (0)