Skip to content

Commit

Permalink
Testing package in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kamaal111 committed Dec 18, 2023
1 parent 185dad5 commit 8d66737
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI
on: push

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
test:
name: test
runs-on: macos-12
steps:
- uses: actions/checkout@v3

- uses: taiki-e/install-action@just

- name: Select Xcode version
run: |
echo "listing available Xcode versions:"
ls -d /Applications/Xcode*
sudo xcode-select --switch /Applications/Xcode_14.2.app/Contents/Developer
- name: Test
run: swift test

0 comments on commit 8d66737

Please sign in to comment.