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

index 2c9489e4d554542ffb5ced181488648d45a58fb9..b8b8ea38a3373510f5bc142a72e2c7c1a37bbd2b 100644 (file)
@@ -6,7 +6,6 @@ jobs:
   run-tests:
 
     strategy:
-      fail-fast: false
       matrix:
         os: [ubuntu-latest, macos-latest, windows-latest]
         python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10"]
@@ -28,11 +27,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