Skip to content

Commit

Permalink
Add GitHub CI
Browse files Browse the repository at this point in the history
  • Loading branch information
colemancda committed Nov 9, 2024
1 parent 61c05b2 commit d267f1b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Swift
on: [push]
jobs:
linux:
name: Linux
strategy:
matrix:
swift: [6.0.2]
runs-on: ubuntu-20.04
steps:
- name: Install Swift
uses: slashmo/[email protected]
with:
version: ${{ matrix.swift }}
- name: Checkout
uses: actions/checkout@v2
- name: Swift Version
run: swift --version
- name: Build (Debug)
run: swift build -c debug
- name: Build (Release)
run: swift build -c release
- name: Test (Debug)
run: swift test -c debug

0 comments on commit d267f1b

Please sign in to comment.