Skip to content

Commit

Permalink
ci: add the sweeper in a different job (#4387)
Browse files Browse the repository at this point in the history
  • Loading branch information
remyleone authored Dec 27, 2024
1 parent 39ba77a commit 49c98f9
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,19 @@ jobs:
env:
SLACK_WEBHOOK_NIGHTLY: ${{ secrets.SLACK_WEBHOOK_NIGHTLY }}
FAILED_PRODUCT: ${{ matrix.products }}

sweepers:
runs-on: ubuntu-latest
needs: nightly
if: always()
steps:
# Checkout should always be before setup-go to ensure caching is working
- name: Checkout
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.22
- name: Run Sweepers
run: go run -v ./cmd/scw-sweeper
env:
Expand Down

0 comments on commit 49c98f9

Please sign in to comment.