-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (40 loc) · 1 KB
/
test.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
name: Test
on:
push:
branches: main
jobs:
darwin:
name: "macOS"
runs-on: macOS-latest
steps:
- name: Checkout Sources
uses: actions/checkout@v3
- name: Homebrew Dependencies
run: |
brew update
brew upgrade cmake
brew install coreutils
- name: Install JUCE
run: script/ci/install-juce
- name: Install Catch2
run: script/ci/install-catch2
- name: Run Tests
run: script/test
windows:
name: "Windows"
runs-on: windows-latest
steps:
- name: Checkout Sources
uses: actions/checkout@v3
- name: Install Dependencies
run: script/ci/windows-setup.bat
shell: powershell
- name: Install JUCE
run: script/ci/windows-install-juce.bat
shell: powershell
- name: Install Catch2
run: script/ci/windows-install-catch2.bat
shell: powershell
- name: Run Tests
run: script/ci/windows-test.bat
shell: powershell