Skip to content

Commit

Permalink
TEMP: Run tests 10 times
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-farries committed Jan 2, 2024
1 parent 52b3d13 commit 218aea3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ jobs:
go-version: '1.21'

- name: Run tests
run: go test ./...
run: |
for i in {1..10}; do
echo "Running iteration $i"
go test ./... --count=1
sleep 10
done
env:
POSTGRES_VERSION: ${{ matrix.pgVersion }}

Expand Down

0 comments on commit 218aea3

Please sign in to comment.