Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Commit

Permalink
CI workflow (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
amika-sq authored Dec 18, 2023
1 parent a02e7f6 commit 31f2562
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: swift-actions/setup-swift@v1
with:
swift-version: "5.9"
- name: Build
run: swift build
- name: Run tests
run: swift test

0 comments on commit 31f2562

Please sign in to comment.