Skip to content

Commit

Permalink
ci: add sweep check
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-savciuc committed Jan 19, 2024
1 parent 798d576 commit e436e5c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,15 @@ jobs:

- run: make docs
- run: git diff --exit-code

sweep_check:
runs-on: ubuntu-latest
if: (github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'skip workflows')) || github.event_name == 'push'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: make sweep-check

0 comments on commit e436e5c

Please sign in to comment.