Allow validation room to report as occupied in scheduler update #1643
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: Lint | |
| on: pull_request | |
| jobs: | |
| linters: | |
| name: Run linters | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Go | |
| uses: actions/setup-go@v1 | |
| with: | |
| go-version: '1.23' | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Restore cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/go/pkg/mod | |
| key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
| - name: Golang lint | |
| run: | | |
| make lint/go | |
| - name: Protobuf lint | |
| run: | | |
| make lint/protobuf | |
| - name: License check | |
| run: | | |
| make license-check |