Skip to content

Commit

Permalink
Run integration tests on perl version matrix 5.28, 5.30, 5.32 (#58)
Browse files Browse the repository at this point in the history
Signed-off-by: Ondrej Vasko <ondrej.vaskoo@gmail.com>
  • Loading branch information
Lirt authored Mar 26, 2021
1 parent 1ac2b0e commit 8300d9d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/docker-compose-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:

jobs:
lint:
name: "perl v${{ matrix.perl-version }}"
name: "lint (perl v${{ matrix.perl-version }})"
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -27,6 +27,10 @@ jobs:
run: perlcritic postfwd-anti-spam.plugin

integration-test-postgresql:
name: "integration test postgresql (perl v${{matrix.perl-version}})"
strategy:
matrix:
perl-version: [ '5.32', '5.30', '5.28' ]
runs-on: ubuntu-latest
env:
DATABASES: "postgresql"
Expand All @@ -46,6 +50,10 @@ jobs:
run: docker-compose -f tests/dev-compose-postgresql.yml down

integration-test-mysql:
name: "integration test mysql (perl v${{matrix.perl-version}})"
strategy:
matrix:
perl-version: [ '5.32', '5.30', '5.28' ]
runs-on: ubuntu-latest
env:
DATABASES: "mysql"
Expand Down

0 comments on commit 8300d9d

Please sign in to comment.