diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a77ff1e..7ee2182 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,22 +6,22 @@ on: - cron: '0 8 * * 6' jobs: test: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 strategy: matrix: - python: ["2.7", "pypy2", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "pypy3"] + python: ["2.7", "pypy2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "pypy3.9"] name: "Test: Python ${{ matrix.python }}" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: recursive - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 with: python-version: ${{ matrix.python }} - run: ./test/test fmt: name: Format - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: psf/black@stable