cleanup #288
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: tests | |
on: [push, pull_request] | |
jobs: | |
static_analysis: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Installing requirements | |
run: | |
python -m pip install -r requirements.txt | |
- name: Static analysis | |
run: pre-commit run --all | |
scons_test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: ["ubuntu-20.04", "ubuntu-24.04", "macos-14"] | |
python: ["3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Installing python requirements | |
run: | |
python -m pip install -r requirements.txt | |
- name: Installing ubuntu requirements | |
if: ${{startsWith(matrix.os, 'ubuntu')}} | |
run: | |
scripts/ubuntu_dependencies.sh | |
- name: Installing macos requirements | |
if: ${{startsWith(matrix.os, 'macos')}} | |
run: | |
scripts/macos_dependencies.sh | |
- name: Building | |
run: scons -j$(nproc || sysctl -n hw.logicalcpu) | |
full_test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: ["ubuntu-20.04", "ubuntu-24.04", "macos-14"] | |
python: ["3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Installing ubuntu requirements | |
if: ${{startsWith(matrix.os, 'ubuntu')}} | |
run: | |
scripts/ubuntu_dependencies.sh | |
- name: Installing macos requirements | |
if: ${{startsWith(matrix.os, 'macos')}} | |
run: | |
scripts/macos_dependencies.sh | |
- name: Installing rednose | |
run: pip install -e .[dev] | |
- name: Running all tests | |
run: pytest |