Fix is_alive #250
Workflow file for this run
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: Run Lint and Python Tests | |
# yamllint disable-line rule:truthy | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v4 | |
- name: Install Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- uses: pre-commit/[email protected] | |
tests: | |
name: ${{ matrix.python-version }} / ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- { python-version: "3.13", os: ubuntu-latest, session: "tests" } | |
- { python-version: "3.12", os: ubuntu-latest, session: "tests" } | |
- { python-version: "3.11", os: ubuntu-latest, session: "tests" } | |
- { python-version: "3.10", os: ubuntu-latest, session: "tests" } | |
- { python-version: "3.9", os: ubuntu-latest, session: "tests" } | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v4 | |
- name: Install Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Run tests with pytest | |
run: pytest tests |