From 4fd62b22fecec1094c2a576b536be8643d9f1d0e Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Fri, 5 May 2023 22:16:15 +0000 Subject: [PATCH] ci: use ubuntu-20.04 instead of latest temporary --- .github/workflows/testing_initiative.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/testing_initiative.yml b/.github/workflows/testing_initiative.yml index 418845a..3c84968 100644 --- a/.github/workflows/testing_initiative.yml +++ b/.github/workflows/testing_initiative.yml @@ -32,14 +32,17 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: + - ubuntu-20.04 + - macos-latest + - windows-latest python-version: [2.7, 3.6, 3.7, 3.8, 3.9] no-coverage: [0] include: - - os: ubuntu-latest + - os: ubuntu-20.04 python-version: pypy-2.7 no-coverage: 1 - - os: ubuntu-latest + - os: ubuntu-20.04 python-version: pypy-3.6 no-coverage: 1 steps: @@ -71,7 +74,7 @@ jobs: coveralls: name: Finish Coveralls needs: test - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 container: python:3-slim steps: - name: Install coveralls @@ -87,7 +90,8 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest] + os: + - ubuntu-20.04 python-version: [3.6] steps: - uses: actions/checkout@v2