Skip to content

Commit e962b2b

Browse files
authored
Merge pull request #114 from tus/rewrite/start
TUSKit 3.0.0
2 parents 7901b99 + c325d35 commit e962b2b

File tree

92 files changed

+5195
-2706
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+5195
-2706
lines changed

.github/workflows/tuskit-ci.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: TUSKit CI
2+
on: [push]
3+
jobs:
4+
build:
5+
name: Swift ${{ matrix.swift }} on ${{ matrix.os }}
6+
strategy:
7+
matrix:
8+
os: ["macos-latest"]
9+
swift: ["5.5"]
10+
runs-on: ${{ matrix.os }}
11+
steps:
12+
- name: Extract Branch Name
13+
run: echo "BRANCH=$(echo ${GITHUB_REF##*/})" >> $GITHUB_ENV
14+
- uses: fwal/[email protected]
15+
with:
16+
swift-version: ${{ matrix.swift }}
17+
- uses: actions/checkout@v2
18+
- name: Build
19+
run: swift build -Xswiftc --disable-experimental-concurrency
20+
- name: Run tests
21+
run: swift test -Xswiftc --disable-experimental-concurrency
22+
- uses: 8398a7/action-slack@v3
23+
if: failure() && env.BRANCH == 'master'
24+
with:
25+
status: failure
26+
env:
27+
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Xcode
2+
.build/
23
#
34
build/
45
*.pbxuser

.vscode/TUSKit.code-workspace

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"folders": [
3+
{
4+
"path": ".."
5+
}
6+
],
7+
"settings": {}
8+
}

CHANGELOG.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

Example/Podfile

Lines changed: 0 additions & 10 deletions
This file was deleted.

Example/Podfile.lock

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)