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 a42ee8d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/swift-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Swift Test

on: [push]

jobs:
build:
runs-on: macos-latest

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

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

- name: Build
run: swift build

- name: Build and run tests
run: swift test

0 comments on commit a42ee8d

Please sign in to comment.