update github action versions #70
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
name: Build | |
on: | |
- push | |
- pull_request | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- python-version: "3.11" | |
os: ubuntu-latest | |
- python-version: "3.11" | |
os: windows-latest | |
- python-version: "3.11" | |
os: macos-latest | |
- python-version: "3.10" | |
os: ubuntu-latest | |
- python-version: "3.9" | |
os: ubuntu-latest | |
- python-version: "3.8" | |
os: ubuntu-latest | |
- python-version: pypy-3.10 | |
os: ubuntu-latest | |
- python-version: pypy-3.9 | |
os: ubuntu-latest | |
- python-version: pypy-3.8 | |
os: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Pip install dependencies | |
run: | | |
echo "::group::Run python -m pip install --upgrade pip setuptools wheel" | |
python -m pip install --upgrade pip setuptools wheel | |
echo "::endgroup::" | |
echo "::group::Run pip install .[test]" | |
pip install .[test] | |
echo "::endgroup::" | |
- name: Run tests | |
run: python run-tests.py | |
- name: Upload coverage | |
uses: codecov/codecov-action@v4 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |