Gate local-model matrix entries in test workflow #1240
Workflow file for this run
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: lume | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| pull_request: {} | |
| concurrency: | |
| group: lume-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| # Runner images: https://github.com/actions/runner-images | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: macos-15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: uname -a | |
| - run: sudo xcode-select -s /Applications/Xcode_16.app # Swift 6.0 | |
| - run: swift test | |
| working-directory: ./libs/lume | |
| build: | |
| name: Release build | |
| runs-on: macos-15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: uname -a | |
| - run: sudo xcode-select -s /Applications/Xcode_16.app # Swift 6.0 | |
| - run: swift build --configuration release | |
| working-directory: ./libs/lume |