-
Notifications
You must be signed in to change notification settings - Fork 371
48 lines (42 loc) · 909 Bytes
/
tests.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
39
40
41
42
43
44
45
46
47
48
name: Mamba
on:
push:
branches:
- main
pull_request:
branches:
- main
paths-ignore:
- 'docs/**'
- '**.md'
merge_group:
types: [checks_requested]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
unix_tests:
name: Unix
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
build_type: [release, debug]
fail-fast: false
uses: ./.github/workflows/unix_impl.yml
with:
os: ${{ matrix.os }}
build_type: ${{ matrix.build_type }}
win_tests:
name: Windows
strategy:
matrix:
os: [windows-2019]
build_type: [release]
fail-fast: true
uses: ./.github/workflows/windows_impl.yml
with:
os: ${{ matrix.os }}
build_type: ${{ matrix.build_type }}
brew_tests:
name: Brew
uses: ./.github/workflows/brew.yml