forked from tardis-sn/tardis
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (32 loc) · 874 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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 # calls the one above ^
with:
run_label: ${{ matrix.label }}
run_os: ${{ matrix.os }}
secrets: inherit