From: Oleg Broytman Date: Tue, 20 Sep 2022 23:30:59 +0000 (+0300) Subject: CI(GHActions): fail fast, use `setup-python@v4`, `cache@v3` X-Git-Tag: 3.1.0.post2~2 X-Git-Url: https://git.phdru.name/mimedecode.git/?p=mimedecode.git;a=commitdiff_plain;h=fd199ea6dbfe4560f25b98f42593712be887a2c9 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 6cf885c..5854e6a 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: python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "pypy-2.7"] @@ -17,11 +16,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: # This path is specific to Linux/Unix path: ~/.cache/pip