diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fc9a6dcf..f8f997c5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -21,9 +21,9 @@ jobs: run: make bin bin/simple bin/minimal working-directory: tests/go-tests - name: Run tests - run: go test -v ./rvgo/... -coverprofile=coverage.out -coverpkg=./rvgo/... -skip '.+/slow|.+/evm|TestEVMStep' + run: go test -v ./rvgo/... -coverprofile=coverage.out -coverpkg=./rvgo/... -skip '.+/evm|TestEVMStep' - name: Run slow tests - run: go test -v ./rvgo/... -run '.+/slow|.+/evm|TestEVMStep' + run: go test -v ./rvgo/... -run '.+/evm|TestEVMStep' - name: Fuzz run: make fuzz - name: Upload coverage to Codecov