Skip to content

Commit d01306f

Browse files
committed
build(actions): do not run tests on v3.13.x
v3.13 is deprecated since we can't guarantee backwards compatibility anymore.
1 parent 1eea965 commit d01306f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
PLATFORM:
12-
# - { RMQREF: "v3.13.x", ERLVER: "26.2", ELXVER: "1.16" }
12+
- { RMQREF: "v3.13.x", ERLVER: "26.2", ELXVER: "1.16" }
1313
- { RMQREF: "v4.0.x", ERLVER: "26.2", ELXVER: "1.16" }
1414
- { RMQREF: "v4.1.x", ERLVER: "27", ELXVER: "1.18" }
1515
- { RMQREF: "v4.2.x", ERLVER: "27", ELXVER: "1.18" }
@@ -33,6 +33,7 @@ jobs:
3333
elixir-version: ${{ matrix.PLATFORM.ELXVER }}
3434
- name: Run tests
3535
working-directory: ${{ env.PLUGIN_FOLDER }}
36+
if: "${{ matrix.PLATFORM.RMQREF != 'v3.13.x' }}"
3637
run: |
3738
# We use `dev` Mix environment since old versions of RMQ fail to build otherwise
3839
make tests RABBITMQ_VERSION=${{ matrix.PLATFORM.RMQREF }} MIX_ENV=dev

0 commit comments

Comments
 (0)