-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from glbrntt/add-ci
Add CI workflow
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: CI | ||
on: | ||
pull_request: | ||
branches: [main] | ||
jobs: | ||
preflight: | ||
name: License Header and Formatting Checks | ||
runs-on: ubuntu-latest | ||
container: | ||
image: swift:6.0-jammy | ||
steps: | ||
- name: "Checkout repository" | ||
uses: actions/checkout@v4 | ||
- name: Mark the workspace as safe | ||
run: git config --global --add safe.directory ${GITHUB_WORKSPACE} | ||
- name: "Formatting, License Headers, and Generated Code check" | ||
run: | | ||
./dev/sanity.sh | ||
unit-tests: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- image: swiftlang/swift:nightly-jammy | ||
- image: swift:6.0-jammy | ||
name: Build and Test on ${{ matrix.image }} | ||
runs-on: ubuntu-latest | ||
container: | ||
image: ${{ matrix.image }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: 🔧 Build | ||
run: swift build ${{ matrix.swift-build-flags }} | ||
timeout-minutes: 20 | ||
- name: 🧪 Test | ||
run: swift test ${{ matrix.swift-test-flags }} | ||
timeout-minutes: 20 |