Skip to content

Commit cc69838

Browse files
committed
initial commit 🚀
0 parents  commit cc69838

File tree

13 files changed

+1501
-0
lines changed

13 files changed

+1501
-0
lines changed

.github/workflows/build.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: build
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches: [ main ]
7+
paths:
8+
- '.swiftlint.yml'
9+
- '**/*.swift'
10+
pull_request:
11+
branches: [ main ]
12+
paths:
13+
- '.swiftlint.yml'
14+
- '**/*.swift'
15+
16+
jobs:
17+
build:
18+
19+
runs-on: macos-latest
20+
21+
steps:
22+
- uses: actions/checkout@v2
23+
- name: Build
24+
run: swift build -v

.github/workflows/swiftlint.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: swiftlint
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches: [ main ]
7+
paths:
8+
- '.swiftlint.yml'
9+
- '**/*.swift'
10+
pull_request:
11+
branches: [ main ]
12+
paths:
13+
- '.swiftlint.yml'
14+
- '**/*.swift'
15+
16+
jobs:
17+
build:
18+
19+
runs-on: ubuntu-latest
20+
21+
steps:
22+
- uses: actions/checkout@v2
23+
- name: GitHub Action for SwiftLint
24+
uses: norio-nomura/[email protected]

.github/workflows/test.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: test
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches: [ main ]
7+
paths:
8+
- '.swiftlint.yml'
9+
- '**/*.swift'
10+
pull_request:
11+
branches: [ main ]
12+
paths:
13+
- '.swiftlint.yml'
14+
- '**/*.swift'
15+
16+
jobs:
17+
build:
18+
19+
runs-on: macos-latest
20+
21+
steps:
22+
- uses: actions/checkout@v2
23+
- name: Run tests
24+
run: swift test -v

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
.build
2+
DerivedData
3+
/.previous-build
4+
xcuserdata
5+
.DS_Store
6+
*~
7+
\#*
8+
.\#*
9+
.*.sw[nop]
10+
*.xcscmblueprint
11+
/default.profraw
12+
*.xcodeproj
13+
Utilities/Docker/*.tar.gz
14+
.swiftpm
15+
Package.resolved
16+
/build
17+
*.pyc

.swiftlint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
disabled_rules:
2+
- large_tuple

0 commit comments

Comments
 (0)