Include the source localisation value in the headerdoc comments #86
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: | |
- main | |
jobs: | |
validate-spi-manifest: | |
name: Validate SPI Manifest | |
runs-on: macos-14 | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_15.2.app/Contents/Developer | |
VALIDATE_SPI_MANIFEST: YES | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Validate SPI Manifest | |
run: swift package plugin validate-spi-manifest | |
unit-test: | |
name: Unit Tests (Xcode ${{ matrix.xcode }}) | |
strategy: | |
fail-fast: false | |
matrix: | |
xcode: ["15.0", "15.2", "15.3"] | |
include: | |
- xcode: "15.0" | |
macos: macOS-13 | |
- xcode: "15.2" | |
macos: macOS-14 | |
- xcode: "15.3" | |
macos: macOS-14 | |
runs-on: ${{ matrix.macos }} | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Run Tests | |
run: xcodebuild clean test -scheme XCStringsTool-Package -destination platform=macOS |