Skip to content

Commit 9c82c7c

Browse files
authored
Create linux.yml
1 parent 6f182e0 commit 9c82c7c

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/linux.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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: ReerJSON
5+
6+
on:
7+
push:
8+
branches: [ "main" ]
9+
pull_request:
10+
branches: [ "main" ]
11+
12+
jobs:
13+
Linux:
14+
runs-on: [ubuntu-latest]
15+
container: swift:5.10
16+
steps:
17+
- uses: actions/checkout@v1
18+
- name: Linux
19+
run: swift build -v

0 commit comments

Comments
 (0)