chore(deps): bump actions/setup-go from 5 to 6 #17
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: CI | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| docs-smoke: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Basic repository checks | |
| run: | | |
| set -euo pipefail | |
| if [[ -f README.md || -f Readme.md || -f readme.md ]]; then | |
| echo "README found" | |
| else | |
| echo "::error::README is missing." | |
| exit 1 | |
| fi | |
| echo "Tracked files: $(git ls-files | wc -l)" |