Skip to content

Commit

Permalink
feature: Build via Github actions
Browse files Browse the repository at this point in the history
closes #1
  • Loading branch information
Oliver Schrenk committed Oct 16, 2023
1 parent 5950150 commit e6d847b
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Swift

on: [push]

jobs:
build:
name: Swift ${{ matrix.swift }} on ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest]
swift: ["5.9"]
runs-on: ${{ matrix.os }}
steps:
- uses: swift-actions/[email protected]
with:
swift-version: ${{ matrix.swift }}
- uses: actions/checkout@v4
- name: Build
run: swift build

0 comments on commit e6d847b

Please sign in to comment.