go.mod: update go to 1.26 and tailscale.com to latest #266
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: Linux CI | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| # Allows manual triggering of the workflow | |
| workflow_dispatch: | |
| jobs: | |
| run-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: '1.26rc2' | |
| # Only run in this linux based runner | |
| - name: Check Formatting | |
| run: | | |
| gofmt -l . | |
| - name: check nix flake is up to date | |
| run: | | |
| ./update-flake.sh | |
| echo | |
| echo | |
| git diff --name-only --exit-code || (echo "The files above need updating. Please run './update-flake.sh'."; exit 1) |