Skip to content

Commit 8948e13

Browse files
authored
ISSUE-5 - Integrate SwiftTesting Action (#6)
* feat: add ci * fix: small formatting fix * fix: updates
1 parent 394b0a6 commit 8948e13

File tree

3 files changed

+17
-30
lines changed

3 files changed

+17
-30
lines changed

.github/workflows/ci.yml

-29
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Test SwiftAnyCodable
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- "**.swift"
7+
8+
jobs:
9+
swifttesting:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- name: Run SwiftTesting
14+
uses: GetAutomaApp/opensource-actions/swifttesting@main
15+
with:
16+
working-directory: "."
17+
compose: "false"

Sources/AnyCodable/AnyCodableKey.swift

-1
Original file line numberDiff line numberDiff line change
@@ -170,5 +170,4 @@ public enum AnyCodableKey: CodingKey, Codable, Hashable, Equatable, ExpressibleB
170170
case .integer(let value): return "\(value)"
171171
}
172172
}
173-
174173
}

0 commit comments

Comments
 (0)