From 333702fcc6b8c297df8ac3daae0d818f5a78cf40 Mon Sep 17 00:00:00 2001 From: Spoorthi <9302666+spoo-bar@users.noreply.github.com> Date: Mon, 9 Oct 2023 17:04:33 +0530 Subject: [PATCH] ci: rename the gh workflow job name to be accurate (#465) * rename the gh workflow job name to be accurate * Update CHANGELOG.md --- .github/workflows/test.yaml | 3 ++- CHANGELOG.md | 3 +-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index f8ccff54..994d7822 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -6,7 +6,8 @@ on: pull_request: jobs: - build: + run-tests: + name: Run tests runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/CHANGELOG.md b/CHANGELOG.md index 18b60036..7a1bebf0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,15 +33,14 @@ Contains all the PRs that improved the code without changing the behaviours. ### Added - [#431](https://github.com/archway-network/archway/pull/431) - Added gh workflow to run IBC conformance tests on PRs - - [#439](https://github.com/archway-network/archway/pull/439) - Adding containerized localnet - [#445](https://github.com/archway-network/archway/pull/445) - Adding Archway logo and version number to upgrade logs - - [#459](https://github.com/archway-network/archway/pull/459) - Add missing ADR references to docs index ### Changed - [#457](https://github.com/archway-network/archway/pull/457) - Modify the upgrade handlers to pass in all the app keepers instead of just the account keeper +- [#465](https://github.com/archway-network/archway/pull/465) - Change the name of the gh workflow job from `build` to `run-tests` as it runs tests ### Deprecated