Documentation for using MARCS to generate a .mod file for STARDIS (#227) #638
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: | |
branches: | |
- main | |
workflow_dispatch: | |
env: | |
CACHE_NUMBER: 0 # increase to reset cache manually | |
PYTEST_FLAGS: --cov=stardis --cov-report=xml --cov-report=html --stardis-regression-data=${{ github.workspace }}/stardis-regression-data | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
defaults: | |
run: | |
shell: bash -l {0} | |
jobs: | |
build: | |
if: github.repository_owner == 'tardis-sn' | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
label: linux-64 | |
prefix: /usr/share/miniconda3/envs/stardis | |
# - os: ubuntu-latest | |
# label: linux-64-cuda | |
# prefix: /usr/share/miniconda3/envs/stardis | |
- os: macos-latest | |
label: osx-64 | |
prefix: /Users/runner/miniconda3/envs/stardis | |
name: ${{ matrix.label }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup LFS | |
uses: ./.github/actions/setup_lfs | |
- name: Setup STARDIS | |
uses: ./.github/actions/setup_env | |
with: | |
os-label: ${{ matrix.label }} | |
- name: Install TARDIS | |
id: install-tardis | |
run: | | |
pip install git+https://github.com/tardis-sn/[email protected] | |
- name: Install STARDIS | |
id: install-stardis | |
run: | | |
pip install -e .[test] | |
- name: Run tests | |
run: pytest ${{ env.PYTEST_FLAGS }} | |
- name: Upload to Codecov | |
run: bash <(curl -s https://codecov.io/bash) |