Skip to content

Commit

Permalink
Add GitHub CI
Browse files Browse the repository at this point in the history
  • Loading branch information
colemancda committed Dec 14, 2024
1 parent 7b3612b commit 174f54f
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Swift
on: [push]
jobs:

macos:
name: macOS
runs-on: macos-latest
steps:
- name: Install Swift
uses: slashmo/[email protected]
with:
version: 6.0.3
- name: Checkout
uses: actions/checkout@v2
- name: Swift Version
run: swift --version
- name: Install dependencies
run: brew install sdl2
- name: Build (Debug)
run: swift build -c debug
- name: Build (Release)
run: swift build -c release
- name: Test (Debug)
run: swift test -c debug

linux:
name: Linux
strategy:
matrix:
swift: [6.0.3]
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: Install dependencies
run: sudo apt-get install -y libsdl2-dev
- 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 174f54f

Please sign in to comment.