Skip to content

Commit

Permalink
Updates to CI and dependabot config.
Browse files Browse the repository at this point in the history
  • Loading branch information
daveverwer committed Jul 22, 2024
1 parent ea8eea9 commit daac236
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,7 @@ updates:
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
19 changes: 13 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,24 @@ jobs:
os: [macos-12, ubuntu-20.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- run: swift build --disable-automatic-resolution -c release
- uses: actions/checkout@v4
- uses: fwal/setup-swift@v2
- name: Echo Swift version
run: swift --version
- name: Check a Release build
run: swift build --disable-automatic-resolution -c release

run-tests:
strategy:
matrix:
swift-version: [5.6, 5.7, 5.8, 5.9]
swift-version: [5.8, 5.9, 5.10]
runs-on: ubuntu-20.04
steps:
- uses: fwal/setup-swift@v1
- uses: actions/checkout@v4
- uses: fwal/setup-swift@v2
with:
swift-version: ${{ matrix.swift-version }}
- uses: actions/checkout@v2
- run: swift test
- name: Echo Swift version
run: swift --version
- name: Test
run: swift test

0 comments on commit daac236

Please sign in to comment.