Handle Test warnings #505
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: stardis-tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- '*' | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash -l {0} | |
env: | |
CACHE_NUMBER: 0 # increase to reset cache manually | |
jobs: | |
build: | |
strategy: | |
matrix: | |
label: [linux-64] | |
include: | |
- os: ubuntu-latest | |
label: linux-64 | |
prefix: /usr/share/miniconda3/envs/stardis | |
name: ${{ matrix.label }} | |
runs-on: ${{ matrix.os }} | |
if: ${{ !github.event.pull_request.draft }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: tardis-sn/stardis | |
- name: Setup Mambaforge | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
miniforge-variant: Mambaforge | |
miniforge-version: latest | |
activate-environment: stardis | |
use-mamba: true | |
- name: Cache lockfile | |
uses: actions/cache@v4 | |
with: | |
path: ${{ matrix.prefix }} | |
key: conda-${{ matrix.label }}-${{ hashFiles(format('conda-{0}.lock', matrix.label)) }}-${{ env.CACHE_NUMBER }} | |
id: cache-conda | |
- name: Update Conda Environment | |
id: update-env | |
run: | | |
mamba update -n stardis --file conda-${{ matrix.label }}.lock | |
if: steps.cache-conda.outputs.cache-hit != 'true' | |
- name: Install tardis | |
id: install-tardis | |
run: | | |
pip install git+https://github.com/tardis-sn/tardis.git@${{ github.sha }} | |
- name: Install stardis | |
id: install-stardis | |
run: | | |
pip install -e .[test] | |
- name: Run stardis tests | |
run: pytest |