From 31d65c561b70f60600035b98f2dce96998308e74 Mon Sep 17 00:00:00 2001 From: Rod Vagg Date: Wed, 4 Aug 2021 19:15:44 +1000 Subject: [PATCH] Run codec-fixtures tests via Actions --- .github/workflows/test.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5d3a415c..57d0b12e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,3 +19,14 @@ jobs: uses: actions/checkout@v2 - name: Test run: go test ./... + - name: Checkout codec-fixtures + uses: actions/checkout@v2 + with: + repository: ipld/codec-fixtures + path: codec-fixtures + - name: Run codec-fixtures tests + run: | + cd codec-fixtures/go + echo "replace github.com/ipld/go-ipld-prime => ../../" >> go.mod + go test -v ./... +