Add a command plugin to download AWS model files #273
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| release: | |
| types: [published] | |
| jobs: | |
| macos: | |
| runs-on: macOS-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: SPM tests | |
| run: | | |
| swift --version | |
| swift test | |
| linux: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| tag: | |
| - swift:6.0 | |
| - swift:6.1 | |
| - swift:6.2 | |
| container: | |
| image: ${{ matrix.tag }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Test | |
| run: | | |
| swift --version | |
| swift test |