From: Aarni Koskela Date: Fri, 8 Apr 2022 12:38:39 +0000 (+0300) Subject: CI: update OS versions + PyPy baseline to 3.7 X-Git-Tag: v2.10.0~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6be6b1f5c6ed933ff4e9c3acac255cdbe8c12e53;p=thirdparty%2Fbabel.git CI: update OS versions + PyPy baseline to 3.7 --- 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