Bump golang, enhance CI, add tidycheck and vet checks #8
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: xproto | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: "*" | |
| jobs: | |
| xproto: | |
| name: Run protocol (xproto) tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.25' | |
| - name: Run xproto protocol tests | |
| run: make xproto |