Skip to content

Disable fail fast

Disable fail fast #31

Workflow file for this run

# name: main
# on:
# push:
# branches:
# - '*'
# pull_request:
# branches:
# - '*'
# concurrency:
# group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
# cancel-in-progress: true
# jobs:
# matrix:
# if: github.repository_owner == 'tardis-sn'
# strategy:
# # super important if you want to see all results, even if one fails
# # fail-fast is true by default
# fail-fast: false
# 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
# uses: ./.github/workflows/new_tests.yml
# with:
# run_label: ${{ matrix.label }}
# run_os: ${{ matrix.os }}
# secrets: inherit