From 6be6b1f5c6ed933ff4e9c3acac255cdbe8c12e53 Mon Sep 17 00:00:00 2001 From: Aarni Koskela Date: Fri, 8 Apr 2022 15:38:39 +0300 Subject: [PATCH] CI: update OS versions + PyPy baseline to 3.7 --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c7de683a..e346f04f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,19 +11,19 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-18.04, windows-2019, macos-10.15] - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "pypy3"] + os: ["ubuntu-20.04", "windows-2022", "macos-11"] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "pypy-3.7"] env: BABEL_CLDR_NO_DOWNLOAD_PROGRESS: "1" BABEL_CLDR_QUIET: "1" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/cache@v2 with: path: cldr key: cldr-${{ hashFiles('scripts/*cldr*') }} - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} - name: Install dependencies -- 2.47.2