diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2154444..3fdc4ad 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -136,17 +136,14 @@ jobs: path: bench-results.txt retention-days: 30 memci: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v6 - - - uses: actions/setup-go@v6 - with: - go-version: "1.26" - - # Both binaries here are host tools. A TinyGo target would need - # acifani/setup-tinygo installed above and a build command naming it. - - uses: soypat/memci@main - with: - args: -kind package - targets: .github/memci.json \ No newline at end of file + needs: [test] + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + - uses: actions/setup-go@v6 + with: + go-version: "1.26" + - uses: soypat/memci@main + with: + args: -kind package + targets: .github/memci.json \ No newline at end of file