Skip to content

Commit

Permalink
Create expensive.yml
Browse files Browse the repository at this point in the history
Run -count=1000 occasionally.
  • Loading branch information
crhntr authored Nov 14, 2024
1 parent bdf4b9e commit 5f7ddf8
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/expensive.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Run
on:
schedule:
- cron: '0 16 * * 1'
workflow_dispatch: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Test
run: go test -count=1000 -shuffle=on -failfast ./...

0 comments on commit 5f7ddf8

Please sign in to comment.