Add canonical package location to SwiftPMCacheKey to differentiate the same target when its package is changed from remote one to local one (or vice-versa) #282
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: Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
Tests: | |
strategy: | |
matrix: | |
xcode_version: | |
- "16.1" # 6.0 | |
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 | |
env: | |
ENABLE_INTEGRATION_TESTS: 1 | |
IS_CI: 1 |