Skip to content

Commit

Permalink
many times
Browse files Browse the repository at this point in the history
  • Loading branch information
faddat committed Nov 8, 2024
1 parent 0ab5319 commit 439cfb5
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/many.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# runs tests in a plain environment, many times
on:
push:
branches:
- main
pull_request:
name: Test
jobs:
test-nocache:
continue-on-error: true
strategy:
matrix:
go-version: [1.23.x]
os: [ubuntu-latest, macos-latest]
repeat: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache: false
- run: go test ./...

test-cache:
continue-on-error: true
strategy:
matrix:
go-version: [1.23.x]
os: [ubuntu-latest, macos-latest]
repeat: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- run: go test ./...

0 comments on commit 439cfb5

Please sign in to comment.