We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d0173a commit fe7fa5dCopy full SHA for fe7fa5d
.github/workflows/swift.yml
@@ -1,7 +1,7 @@
1
# This workflow will build a Swift project on macOS
2
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
3
4
-name: macos-build
+name: swift-openapi-lambda-build
5
6
on:
7
push:
@@ -10,7 +10,7 @@ on:
10
branches: [ "main" ]
11
12
jobs:
13
- build:
+ build-macos:
14
15
env:
16
# https://github.com/actions/runner-images/tree/main/images/macos
@@ -24,3 +24,15 @@ jobs:
24
run: swift build -v
25
- name: Run tests
26
run: swift test -v
27
+
28
+ build-linux:
29
30
+ runs-on: ubuntu-22.04
31
32
+ steps:
33
+ - uses: actions/checkout@v3
34
+ - name: Build
35
+ run: swift build -v
36
+ - name: Run tests
37
+ run: swift test -v
38
0 commit comments