-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (49 loc) · 1.31 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
42
43
44
45
46
47
48
49
50
51
52
# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: khlopko/setup-swift@8e40832f03d3d3d672037ad9d9bba479fcb284fb
with:
swift-version: "main-snapshot"
- name: build
run: swift build
- name: run tests
run: swift test
build-ubuntu:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: khlopko/setup-swift@8e40832f03d3d3d672037ad9d9bba479fcb284fb
with:
swift-version: "main-snapshot"
- name: build
run: swift build
- name: run tests
run: swift test
build-macos-stable:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: khlopko/setup-swift@8e40832f03d3d3d672037ad9d9bba479fcb284fb
- name: build
run: swift build
- name: run tests
run: swift test
build-ubuntu-stable:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: khlopko/setup-swift@8e40832f03d3d3d672037ad9d9bba479fcb284fb
- name: build
run: swift build
- name: run tests
run: swift test