Add Swift starter template

This commit is contained in:
khoi
2019-08-29 14:21:24 +07:00
parent d9d8ca84f7
commit 941b3de36e
3 changed files with 31 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
{
"name": "Swift",
"description": "Build and test a Swift Package.",
"iconName": "swift",
"categories": ["Swift"]
}
+15
View File
@@ -0,0 +1,15 @@
name: Swift
on: [push]
jobs:
build:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v