Update node_on_three_oses.yml #259
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/actions/setup-python | |
name: pypy_version | |
on: [pull_request, push] | |
jobs: | |
pypy_version: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
# python-version: [pypy3, '>pypy-3.10-v7.3.13'] # Does not work! | |
# python-version: [pypy3.10, pypy-3.10, pypy3.10-v7.3.14, pypy-3.10-v7.3.14] | |
python-version: [pypy3.9, pypy3.10] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- run: pypy3 --version |