Skip to content

Commit

Permalink
Updated github actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
parpalak committed Mar 4, 2024
1 parent 8e8de9c commit 3ab6611
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 14 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/test_mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,17 @@ jobs:
matrix:
operating_system: ['ubuntu-22.04']
mysql_versions:
- 'mariadb-10.2'
- 'mariadb-10.3'
- 'mariadb-10.4'
- 'mariadb-10.5'
- 'mariadb-10.6'
- 'mariadb-10.7'
- 'mariadb-10.8'
- 'mariadb-10.9'
- 'mariadb-10.10'
- 'mariadb-10.11'
- 'mariadb-11.0'
- 'mariadb-11.1'
- 'mariadb-11.2'
- 'mariadb-11.3'
- '5.7'
- '8.0'
- '8.1'
- '8.2'
- '8.3'
php_versions:
- '8.2'
include:
Expand Down Expand Up @@ -67,4 +60,4 @@ jobs:

- name: Output logs
if: failure()
run: cat _cache/*.log && cat _tests/_output/email/*.txt
run: cat _cache/test/*.log && cat _tests/_output/email/*.txt
8 changes: 5 additions & 3 deletions .github/workflows/test_postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@ jobs:
strategy:
fail-fast: false
matrix:
operating_system: ['ubuntu-22.04']
operating_system: ['ubuntu-20.04', 'ubuntu-22.04']
php_versions:
- '8.2'
# This param is not supported by ikalnytskyi/action-setup-postgres@v5 since it uses default packages.
# OS is changed instead.
# postgres_versions:
# - '12'
# - '13'
Expand All @@ -22,7 +24,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- uses: ikalnytskyi/action-setup-postgres@v4
- uses: ikalnytskyi/action-setup-postgres@v5
with:
username: postgres
password: 12345
Expand All @@ -43,4 +45,4 @@ jobs:

- name: Output logs
if: failure()
run: cat _cache/*.log && cat _tests/_output/email/*.txt
run: cat _cache/test/*.log && cat _tests/_output/email/*.txt
4 changes: 2 additions & 2 deletions .github/workflows/test_sqlite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
operating_system: ['ubuntu-22.04']
operating_system: ['ubuntu-20.04','ubuntu-22.04']
php_versions:
- '8.2'

Expand All @@ -32,4 +32,4 @@ jobs:

- name: Output logs
if: failure()
run: cat _cache/*.log && cat _tests/_output/email/*.txt
run: cat _cache/test/*.log && cat _tests/_output/email/*.txt

0 comments on commit 3ab6611

Please sign in to comment.