Skip to content

Commit

Permalink
Add test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bamx23 committed May 4, 2024
1 parent d383b3d commit f5016d5
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Run Unit Tests

on:
pull_request:

jobs:
spm-test:
runs-on: macos-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4

- name: Set up Swift
uses: swift-actions/setup-swift@v2

- name: Build
run: swift build

- name: Run Unit Tests
run: swift test

0 comments on commit f5016d5

Please sign in to comment.