Skip to content

Commit 95d35a6

Browse files
authored
chore: add sequential sweeper for nightly tests (#694)
1 parent d18abf1 commit 95d35a6

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/nightly.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,20 @@ jobs:
3939
SCW_ACCESS_KEY: ${{ secrets.SCW_ACCESS_KEY }}
4040
SCW_SECRET_KEY: ${{ secrets.SCW_SECRET_KEY }}
4141
SCW_DEFAULT_ORGANIZATION_ID: ${{ secrets.SCW_DEFAULT_ORGANIZATION_ID }}
42+
43+
# sweeper needs to run after nightly completed
44+
# no matter what are the results of the jobs
45+
sweeper:
46+
runs-on: ubuntu-latest
47+
needs: nightly
48+
if: always()
49+
steps:
50+
- name: Install Go
51+
uses: actions/setup-go@v2
52+
with:
53+
go-version: 1.15.1
54+
- name: Checkout
55+
uses: actions/checkout@v2
4256
- name: Run sweepers
4357
run: make sweep
4458
env:

0 commit comments

Comments
 (0)