chore: bump github.com/go-co-op/gocron/v2 in the all-deps group (#100) #129
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: linters | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| go-mod: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: stable | |
| - name: Check go mod | |
| run: | | |
| go mod tidy | |
| git diff --exit-code go.mod | |
| git diff --exit-code go.sum | |
| spell: | |
| name: "Spell check" | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 1 | |
| - uses: codespell-project/actions-codespell@v2 | |
| with: | |
| check_filenames: true | |
| check_hidden: true | |
| skip: "go.sum" | |
| typos: | |
| # https://github.com/crate-ci/typos | |
| # Add exceptions to _typos.toml | |
| # install and run locally: cargo install typos-cli && typos | |
| name: typos | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Actions Repository | |
| uses: actions/checkout@v6 | |
| - name: Check spelling of entire workspace | |
| uses: crate-ci/typos@v1 | |
| markdown: | |
| name: markdown | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: DavidAnson/markdownlint-cli2-action@v21 | |
| with: | |
| globs: '**/*.md' |