Skip to content

Commit

Permalink
Add GitHub Actions support
Browse files Browse the repository at this point in the history
Allow the tests to run on CI to verify tests work as intended.
  • Loading branch information
alicerunsonfedora committed Jan 11, 2025
1 parent 4ca77f9 commit 026207f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Run Test Suite

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

jobs:
build:
runs-on: macos-latest

steps:
- uses: actions/checkout@v4
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v

0 comments on commit 026207f

Please sign in to comment.