chore: promote v0.5.0-alpha7 from beta to mainnet #25
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 | |
| # Lint runs golangci-lint over the entire Desmos repository. | |
| # This workflow is run on every pull request and push to master. | |
| # The `golangci` will pass without running if no *.{go, mod, sum} files have been changed. | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| GolangCI: | |
| name: golangci-lint | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 6 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: technote-space/get-diff-action@v6 | |
| with: | |
| PATTERNS: | | |
| **/*.go | |
| **/*.mod | |
| **/*.sum | |
| - uses: golangci/golangci-lint-action@v7 | |
| with: | |
| version: v2.3.0 | |
| args: --timeout 10m | |
| if: env.GIT_DIFF != '' |