Skip to content

Update Build Toolchain #33

Update Build Toolchain

Update Build Toolchain #33

Workflow file for this run

# Modified from GitHub Actions template
name: Pytest
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test-on-ubuntu:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install numpy
pip install -r requirements.txt
- name: Compile Cython
run: |
make clean compile
- name: Test with pytest
run: |
pytest
test-on-windows:
runs-on: windows-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install numpy
pip install -r requirements.txt
- name: Compile Cython
run: |
make clean compile
- name: Test with pytest
run: |
pytest
test-on-mac:
runs-on: macos-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install numpy
pip install -r requirements.txt
- name: Compile Cython
run: |
make clean compile
- name: Test with pytest
run: |
pytest