Skip to content

Commit

Permalink
chore: changelog entry, action improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
johnletey committed May 21, 2024
1 parent 744ae29 commit 9601ea4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .changelog/unreleased/improvements/14-events.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Emit events for key module actions (registering, clearing, etc). ([#13](https://github.com/noble-assets/forwarding/pull/13))
12 changes: 6 additions & 6 deletions .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Build Docker image
uses: strangelove-ventures/[email protected].1
- name: Build Docker Image
uses: strangelove-ventures/[email protected].2
with:
registry: "" # empty registry, image only shared for e2e testing
tag: local # emulate local environment for consistency in interchaintest cases
Expand Down Expand Up @@ -49,15 +49,15 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
go-version: '>=1.22'

- name: Generate Matrix
id: set-matrix
run: |
# 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
Expand All @@ -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
Expand All @@ -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 }}$ .

0 comments on commit 9601ea4

Please sign in to comment.