From: Oleg Broytman Date: Tue, 20 Sep 2022 23:27:59 +0000 (+0300) Subject: CI(GHActions): fail fast, use `setup-python@v4`, `cache@v3` X-Git-Url: https://git.phdru.name/?p=ppu.git;a=commitdiff_plain;h=0c4a078b1c0a50a039fe5a03b09f5ef81d4bceba CI(GHActions): fail fast, use `setup-python@v4`, `cache@v3` --- diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index 2de283e..88529f7 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -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