Skip to content

Commit

Permalink
Writing stardis test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
KasukabeDefenceForce committed Jul 29, 2024
1 parent c107f27 commit 2cd4e19
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions .github/workflows/stardis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
# For more information about TARDIS pipelines, please refer to:
#
# https://tardis-sn.github.io/tardis/development/continuous_integration.html

name: tests

on:
push:
branches:
- '*'
pull_request:
branches:
- '*'

types:
- opened
- reopened
- synchronize
- labeled

env:
CACHE_NUMBER: 0 # increase to reset cache manually
PYTEST_FLAGS: --tardis-refdata=${{ github.workspace }}/tardis-refdata --tardis-regression-data=${{ github.workspace }}/tardis-regression-data
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

defaults:
run:
shell: bash -l {0}

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true


jobs:
build:
if: github.repository_owner == 'tardis-sn'
strategy:
matrix:
label: [osx-arm64, linux-64]
include:
- label: osx-arm64
os: macos-latest
prefix: /Users/runner/miniconda3/envs/tardis

- label: linux-64
os: ubuntu-latest
prefix: /usr/share/miniconda3/envs/tardis
name: ${{ matrix.label }}-Stardis
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4

- name: Setup LFS
uses: ./.github/actions/setup_lfs

- name: Setup environment
uses: ./.github/actions/setup_env
with:
os-label: ${{ matrix.label }}

- name: Install Stardis package git
run: pip install git+https://github.com/tardis-sn/stardis.git

- name: Run tests
run: pytest stardis ${{ env.PYTEST_FLAGS }}

0 comments on commit 2cd4e19

Please sign in to comment.