Skip to content

Commit 31e353d

Browse files
authored
Merge pull request #29 from transloadit/rewrite/3.0.0
Rewrite, version 3.0.0
2 parents ca7d461 + 939583b commit 31e353d

File tree

69 files changed

+2503
-2222
lines changed

Some content is hidden

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

69 files changed

+2503
-2222
lines changed
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: 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/setup-swift@v1
15+
with:
16+
swift-version: ${{ matrix.swift }}
17+
- uses: actions/checkout@v2
18+
- name: Build
19+
run: swift build
20+
- name: Run tests
21+
run: swift test
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 }}

.vscode/TransloaditKit.code-workspace

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

.vscode/transloaditkit.code-workspace

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

AssemblyResponse.swift

-8
This file was deleted.

Example/Podfile

-14
This file was deleted.

Example/Podfile.lock

-47
This file was deleted.

Example/Tests/Info.plist

-24
This file was deleted.

Example/Tests/Tests.swift

-98
This file was deleted.

Example/Tests/memeCat.jpg

-61 KB
Binary file not shown.

0 commit comments

Comments
 (0)