build(deps): bump the gomod-dependencies group across 1 directory with 13 updates #1008
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: Go lint and test | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Setup Go | |
| uses: actions/setup-go@v3 | |
| with: | |
| go-version: 1.23 | |
| - name: Setup Python # boilerplate.py needs this | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.10' | |
| - name: Run presubmit lint | |
| run: make presubmit | |
| - name: Run go test | |
| run: make test | |
| - name: Run device-injector-test | |
| run: | | |
| sudo make device-injector-test | |
| sudo make clean |