Skip to content

Commit f83534a

Browse files
committed
Merge branch 'master' into issue/116-laravel-template
2 parents 8365b9e + 23fb744 commit f83534a

File tree

5 files changed

+34
-3
lines changed

5 files changed

+34
-3
lines changed

ci/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99

10-
- name: Set up Go 1.12
10+
- name: Set up Go 1.13
1111
uses: actions/setup-go@v1
1212
with:
13-
go-version: 1.12
13+
go-version: 1.13
1414
id: go
1515

1616
- name: Check out code into the Go module directory

ci/maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ jobs:
1414
with:
1515
java-version: 1.8
1616
- name: Build with Maven
17-
run: mvn package --file pom.xml
17+
run: mvn -B package --file pom.xml

ci/properties/swift.properties.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"name": "Swift",
3+
"description": "Build and test a Swift Package.",
4+
"iconName": "swift",
5+
"categories": ["Swift"]
6+
}

ci/swift.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Swift
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: macOS-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- name: Build
13+
run: swift build -v
14+
- name: Run tests
15+
run: swift test -v

icons/swift.svg

Lines changed: 10 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)