Merge pull request #203 from Ryu0118/fix-cache #396
This file contains hidden or 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: Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
Tests: | |
timeout-minutes: 15 | |
strategy: | |
matrix: | |
xcode_version: | |
- "16.2" # 6.0 | |
# - "16.3" # 6.1 GitHub Actions does not support this version yet | |
env: | |
DEVELOPER_DIR: "/Applications/Xcode_${{ matrix.xcode_version }}.app/Contents/Developer" | |
runs-on: macos-15 | |
steps: | |
- name: Get swift version | |
run: swift --version | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: | | |
swift build | |
- name: Run Tests | |
run: | | |
swift test --no-parallel | |
env: | |
ENABLE_INTEGRATION_TESTS: 1 | |
IS_CI: 1 |