Skip to content

Commit

Permalink
chore: use same go test cmd as makefile in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronCQL committed Aug 12, 2023
1 parent 919c543 commit 0b15d11
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/simulation-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,10 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
go-version-file: "go.mod"

- name: Download Modules
run: go mod download

- name: Test
id: test
run: go test -v -run=TestFullAppSimulation ./app -NumBlocks 200 -BlockSize 50 -Commit -Enabled -Period 1
- name: Simulation Test
run: go test ./app -run=TestFullAppSimulation -mod=readonly -Enabled=true -NumBlocks=100 -BlockSize=50 -Commit=true -Period=0 -v -timeout=24h

0 comments on commit 0b15d11

Please sign in to comment.