Merge pull request #5 from Recouse/feature/examples #13
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: CI | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| paths-ignore: | |
| - '**/README.md' | |
| - 'CONTRIBUTING.md' | |
| - 'CODE_OF_CONDUCT.md' | |
| pull_request: | |
| branches: [ "main" ] | |
| paths-ignore: | |
| - '**/README.md' | |
| - 'CONTRIBUTING.md' | |
| - 'CODE_OF_CONDUCT.md' | |
| jobs: | |
| macos-15: | |
| name: Build macOS 15 | |
| runs-on: macos-15 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set Xcode version | |
| run: sudo xcode-select -s /Applications/Xcode_16.4.0.app | |
| - name: Build | |
| run: swift build -v | |
| # - name: Run tests | |
| # run: swift test -v | |
| ubuntu: | |
| name: Build Linux | |
| runs-on: ubuntu-latest | |
| container: | |
| image: swift:latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build | |
| run: swift build -v | |
| # - name: Run tests | |
| # run: swift test -v |