-
-
Notifications
You must be signed in to change notification settings - Fork 3
36 lines (27 loc) · 593 Bytes
/
Copy pathTest.yml
File metadata and controls
36 lines (27 loc) · 593 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
name: Test
on:
push:
branches:
- main
paths-ignore:
- 'Submodule/**'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
strategy:
matrix:
os:
- ubuntu-latest
# - macos-latest
runs-on: ${{ matrix.os }}
timeout-minutes: 30
steps:
- uses: actions/checkout@v6
- uses: ./.github/composites/setup
with:
os: ${{ matrix.os }}
- run: make .build/bin/swift-openapi-generator
- run: swift test