Update from hummingbird-project-template e3f57311d7cc5cffc08d6c9da39c155d4c0d4cfd (#32)
Co-authored-by: adam-fowler <adam-fowler@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
540a1b8c80
commit
04a7e9f70a
2
.github/dependabot.yml
vendored
2
.github/dependabot.yml
vendored
@@ -12,7 +12,7 @@ updates:
|
|||||||
directory: "/"
|
directory: "/"
|
||||||
schedule:
|
schedule:
|
||||||
interval: "daily"
|
interval: "daily"
|
||||||
open-pull-requests-limit: 6
|
open-pull-requests-limit: 5
|
||||||
allow:
|
allow:
|
||||||
- dependency-type: all
|
- dependency-type: all
|
||||||
groups:
|
groups:
|
||||||
|
|||||||
3
.github/workflows/api-breakage.yml
vendored
3
.github/workflows/api-breakage.yml
vendored
@@ -1,4 +1,3 @@
|
|||||||
# This will be interesting to see how often AWS break there own APIs
|
|
||||||
name: API breaking changes
|
name: API breaking changes
|
||||||
|
|
||||||
on:
|
on:
|
||||||
@@ -9,7 +8,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 15
|
timeout-minutes: 15
|
||||||
container:
|
container:
|
||||||
image: swift:5.9
|
image: swift:5.10
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|||||||
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -16,7 +16,7 @@ jobs:
|
|||||||
timeout-minutes: 15
|
timeout-minutes: 15
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
image: ["swift:5.9", "swift:5.10", "swiftlang/swift:nightly-jammy"]
|
image: ["swift:5.9", "swift:5.10", "swiftlang/swift:nightly-6.0-jammy"]
|
||||||
|
|
||||||
container:
|
container:
|
||||||
image: ${{ matrix.image }}
|
image: ${{ matrix.image }}
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
--exclude .build
|
--exclude .build
|
||||||
|
|
||||||
# rules
|
# rules
|
||||||
--disable redundantReturn, extensionAccessControl, typeSugar
|
--disable redundantReturn, extensionAccessControl, typeSugar, conditionalAssignment
|
||||||
|
|
||||||
# format options
|
# format options
|
||||||
--ifdef no-indent
|
--ifdef no-indent
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
# ================================
|
# ================================
|
||||||
# Build image
|
# Build image
|
||||||
# ================================
|
# ================================
|
||||||
FROM swift:5.9 as build
|
FROM swift:5.10 as build
|
||||||
|
|
||||||
WORKDIR /build
|
WORKDIR /build
|
||||||
|
|
||||||
@@ -15,4 +15,4 @@ RUN swift package resolve
|
|||||||
# Copy entire repo into container
|
# Copy entire repo into container
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
RUN swift test --enable-test-discovery --sanitize=thread
|
RUN swift test --sanitize=thread
|
||||||
|
|||||||
Reference in New Issue
Block a user