build(deps): bump pypa/gh-action-pypi-publish from 1.11.0 to 1.12.2 #371
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: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
tests: | |
name: ${{ matrix.os }}-${{ matrix.jax-version }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
jax-version: ["jax"] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install fftw on ubuntu | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
run: sudo apt-get install -y libfftw3-dev | |
- name: Install fftw on macos | |
if: ${{ matrix.os == 'macos-latest' }} | |
run: brew install fftw | |
- name: Build | |
run: | | |
python -m pip install -U pip | |
python -m pip install -U ${{ matrix.jax-version }} | |
python -m pip install -v .[test] | |
- name: Run tests | |
run: python -m pytest -v tests |