Skip to content

fix flaky tests

fix flaky tests #11

Workflow file for this run

on:
push:
branches: [main]
pull_request:
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: "1.21"
- uses: actions/checkout@v4
- run: go test -race -count=3 -timeout 30m ./...
mac:
runs-on: macos-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: "1.21"
- uses: actions/checkout@v4
- run: go test -race -count=3 -timeout 30m ./...
win:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- run: go test -tags invariants -count=3 -timeout 30m ./...
ego:
runs-on: ubuntu-latest
container:
image: ghcr.io/edgelesssys/ego-dev
steps:
- uses: actions/checkout@v4
- run: ego-go test -c ./internal/edg
- run: ego sign edg.test
- run: ego run edg.test
env:
OE_SIMULATION: "1"