-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (40 loc) · 977 Bytes
/
Copy pathci.yml
File metadata and controls
44 lines (40 loc) · 977 Bytes
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
name: CI
on:
push:
branches: [ main, 'feat/**' ]
pull_request:
branches: [ main ]
jobs:
build-test:
name: Build & test
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Swift version
run: swift --version
- name: Build
run: swift build
- name: Test
run: swift test
wire-compat:
name: Mesh wire-compat
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Run wire-compat golden tests
run: swift test --filter WireCompatGoldenTests
topology-matrix:
name: Topology suite (${{ matrix.suite }})
runs-on: macos-14
strategy:
fail-fast: false
matrix:
suite:
- TopologyTests
- TopologyFacadeTests
- StarRuntimeTests
- AutoTopologyTransitionTests
steps:
- uses: actions/checkout@v4
- name: Run ${{ matrix.suite }}
run: swift test --filter ${{ matrix.suite }}