SPI file for swift package index documentation host/links, resolves #6 #19
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: test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build-test: | |
runs-on: macos-14 | |
# runner images reference info: | |
# https://github.com/actions/runner-images/tree/main/images/macos | |
steps: | |
- uses: actions/checkout@v3 | |
- name: get xcode information | |
run: | | |
xcodebuild -version | |
swift --version | |
- name: Swift tests | |
run: swift test | |
- name: Integration tests | |
run: | | |
cd IntegrationTests | |
swift test |