Testing package in CI #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: push | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: test | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Select Xcode version | |
run: | | |
echo "listing available Xcode versions:" | |
ls -d /Applications/Xcode* | |
sudo xcode-select --switch /Applications/Xcode_15.0.1.app/Contents/Developer | |
- name: Test | |
run: swift test |