Skip to content

Commit

Permalink
Add GitHub CI
Browse files Browse the repository at this point in the history
  • Loading branch information
colemancda committed Aug 18, 2023
1 parent 7dddfa9 commit 2131d30
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Swift

on: [push]

jobs:
build:
name: Build
strategy:
matrix:
swift: [5.7.3, 5.8.1]
os: [ubuntu-20.04, macos-latest]
runs-on: ${{ matrix.os }}
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

0 comments on commit 2131d30

Please sign in to comment.