-
-
Notifications
You must be signed in to change notification settings - Fork 20
40 lines (32 loc) · 1.01 KB
/
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
name: tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
linux:
runs-on: ubuntu-24.04
name: Ubuntu 24.04
steps:
- name: Install Swift
uses: tayloraswift/swift-install-action@master
with:
swift-prefix: "swift-6.0.3-release/ubuntu2404/swift-6.0.3-RELEASE"
swift-id: "swift-6.0.3-RELEASE-ubuntu24.04"
- name: Checkout repository
uses: actions/checkout@v3
- name: Install imagemagick
run: sudo apt install -y imagemagick
- name: Run tests
run: Scripts/TestAll
macos:
runs-on: macos-15
name: macOS
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install imagemagick
run: brew install imagemagick
- name: Run tests
run: Scripts/TestAll