Skip to content

Commit

Permalink
Added ci
Browse files Browse the repository at this point in the history
  • Loading branch information
joeldavidw committed Jul 20, 2024
1 parent e94d552 commit 3a73ad1
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI

on:
pull_request:
branches:
- main
push:
branches:
- main

jobs:
unit-test:
name: Unit tests
runs-on: ubuntu-latest
steps:
- uses: swift-actions/setup-swift@3aed395c5397f62deb91d8fe7af1418a9ae4d16f # v2.1.0
with:
swift-version: "5.4.3"
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Build
run: swift build
- name: Run tests
run: swift test

0 comments on commit 3a73ad1

Please sign in to comment.