Skip to content

Commit 8ec9391

Browse files
authored
Create ubuntu.yml (#2)
1 parent fa2b360 commit 8ec9391

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/ubuntu.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# This workflow will build a Swift project
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
3+
4+
name: Ubuntu
5+
6+
on:
7+
push:
8+
branches: ["**"]
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-20.04
13+
14+
steps:
15+
- uses: sersoft-gmbh/swifty-linux-action@v3
16+
with:
17+
release-version: 6.0.1
18+
- uses: actions/checkout@v3
19+
- name: Build for release
20+
run: swift build -v -c release
21+
- name: Test
22+
run: swift test -v

0 commit comments

Comments
 (0)