Skip to content

Commit

Permalink
Update from hummingbird-project-template 3d32f56d39b3d0e2a3435145b933…
Browse files Browse the repository at this point in the history
…521c44cb33b9
  • Loading branch information
adam-fowler authored Apr 30, 2024
1 parent 81cda8c commit ea0116d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ updates:
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 6
open-pull-requests-limit: 5
allow:
- dependency-type: all
groups:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/api-breakage.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# This will be interesting to see how often AWS break there own APIs
name: API breaking changes

on:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
timeout-minutes: 15
strategy:
matrix:
image: ["swift:5.10", "swiftlang/swift:nightly-jammy"]
image: ["swift:5.10", "swiftlang/swift:nightly-6.0-jammy"]

container:
image: ${{ matrix.image }}
Expand All @@ -25,7 +25,7 @@ jobs:
uses: actions/checkout@v4
- name: Test
run: |
swift test --enable-code-coverage
swift test --enable-code-coverage --sanitize=thread
- name: Convert coverage files
run: |
llvm-cov export -format="lcov" \
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ================================
# Build image
# ================================
FROM swift:5.9 as build
FROM swift:5.10 as build

WORKDIR /build

Expand All @@ -15,4 +15,4 @@ RUN swift package resolve
# Copy entire repo into container
COPY . .

RUN swift test --enable-test-discovery --sanitize=thread
RUN swift test --sanitize=thread

0 comments on commit ea0116d

Please sign in to comment.