From 9601ea48391a3c13cb4271a3efc782e341315234 Mon Sep 17 00:00:00 2001 From: John Letey Date: Tue, 21 May 2024 08:24:10 +0200 Subject: [PATCH] chore: changelog entry, action improvements --- .changelog/unreleased/improvements/14-events.md | 1 + .github/workflows/e2e-tests.yaml | 12 ++++++------ 2 files changed, 7 insertions(+), 6 deletions(-) create mode 100644 .changelog/unreleased/improvements/14-events.md diff --git a/.changelog/unreleased/improvements/14-events.md b/.changelog/unreleased/improvements/14-events.md new file mode 100644 index 0000000..7b705de --- /dev/null +++ b/.changelog/unreleased/improvements/14-events.md @@ -0,0 +1 @@ +- Emit events for key module actions (registering, clearing, etc). ([#13](https://github.com/noble-assets/forwarding/pull/13)) diff --git a/.github/workflows/e2e-tests.yaml b/.github/workflows/e2e-tests.yaml index 9bc6510..ec7cba1 100644 --- a/.github/workflows/e2e-tests.yaml +++ b/.github/workflows/e2e-tests.yaml @@ -15,8 +15,8 @@ jobs: build: runs-on: ubuntu-latest steps: - - name: Build Docker image - uses: strangelove-ventures/heighliner-build-action@v1.0.1 + - name: Build Docker Image + uses: strangelove-ventures/heighliner-build-action@v1.0.2 with: registry: "" # empty registry, image only shared for e2e testing tag: local # emulate local environment for consistency in interchaintest cases @@ -49,7 +49,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: "1.22" + go-version: '>=1.22' - name: Generate Matrix id: set-matrix @@ -57,7 +57,7 @@ jobs: # Run the command and convert its output to a JSON array TESTS=$(cd e2e && go test -list . | grep -v "^ok " | jq -R -s -c 'split("\n")[:-1]') echo "matrix=${TESTS}" >> $GITHUB_OUTPUT - + test: needs: - build @@ -76,7 +76,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: "1.22" + go-version: '>=1.22' - name: Download Tarball Artifact uses: actions/download-artifact@v4 @@ -86,5 +86,5 @@ jobs: - name: Load Docker Image run: docker image load -i ${{ env.TAR_PATH }} - - name: run test + - name: Run Tests run: cd e2e && go test -race -v -timeout 15m -run ^${{ matrix.test }}$ .