docs: add guide and PICS links for tcdl, cop, and tmsc in README #31
Workflow file for this run
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: | |
| push: | |
| paths: | |
| - "**.go" | |
| - go.mod | |
| - go.sum | |
| pull_request: | |
| paths: | |
| - "**.go" | |
| - go.mod | |
| - go.sum | |
| jobs: | |
| checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: "go.mod" | |
| - name: Run linter | |
| uses: golangci/golangci-lint-action@v9 | |
| with: | |
| version: v2.10 |