Skip to content

Commit

Permalink
SNP-1649 configure git actions to run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Goldilocks97 committed Jul 1, 2024
1 parent 6b21fcb commit 3555ba5
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Unit Tests

on: [push]

jobs:
test:
runs-on: macos-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up
uses: swift-actions/setup-swift@v2
with:
swift-version: '5.9'

- name: Build
run: swift build

- name: Test
run: swift test

0 comments on commit 3555ba5

Please sign in to comment.