build(deps): bump actions/setup-go from 6 to 7 #199
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: Build and run sanity tests | |
| on: | |
| push: | |
| branches: | |
| - "master" | |
| pull_request: {} | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| go: | |
| - oldstable | |
| - stable | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v7 | |
| - name: Set up Go | |
| uses: actions/setup-go@v7 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| - name: Build | |
| run: make cross | |
| - name: lint | |
| run: make lint | |
| - name: Tests | |
| run: make test | |
| - name: Upload artifats | |
| uses: actions/upload-artifact@v7.0.1 | |
| with: | |
| name: crc-admin-helper executables | |
| path: "out/**/*" |