]> git.phdru.name Git - ppu.git/commitdiff
CI(GHActions): fail fast, use `setup-python@v4`, `cache@v3`
authorOleg Broytman <phd@phdru.name>
Tue, 20 Sep 2022 23:27:59 +0000 (02:27 +0300)
committerOleg Broytman <phd@phdru.name>
Tue, 20 Sep 2022 23:28:03 +0000 (02:28 +0300)
.github/workflows/run-tests.yaml

index 2de283e35cdcc6bd22bbcffa94d844cf40d71574..88529f7831164e333003bd6f030128b83c34b114 100644 (file)
@@ -6,7 +6,6 @@ jobs:
   run-tests:
 
     strategy:
-      fail-fast: false
       matrix:
         os: [ubuntu-latest, windows-latest]
         python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "pypy-2.7"]
@@ -25,11 +24,11 @@ jobs:
 
       # Setup Python/pip
       - uses: actions/checkout@v2
-      - uses: actions/setup-python@v2
+      - uses: actions/setup-python@v4
         with:
           python-version: ${{ matrix.python-version }}
       - name: Cache pip
-        uses: actions/cache@v2
+        uses: actions/cache@v3
         with:
           path: ${{ matrix.pip-cache-path }}
           key: ${{ runner.os }}-pip