Merge pull request #400 from Shimmur/drop-malformed-attributes #155
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: macOS Swift | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| jobs: | |
| build: | |
| name: Swift on ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [macos-15] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Print Swift version | |
| run: swift --version | |
| - uses: actions/checkout@v4 | |
| - name: Build | |
| run: swift build -v | |
| - name: Run tests | |
| run: swift test -v |