SHOWBOAT_REMOTE_URL feature #52
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 tests | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.24' | |
| - name: Run tests | |
| run: go test ./... | |
| - name: Check if cog needs to be run | |
| run: | | |
| pip install cogapp | |
| cog --check --check-fail-msg='Run "cog -r README.md" to update' README.md |