Skip to content

Commit

Permalink
Bump all local versions to 11
Browse files Browse the repository at this point in the history
Signed-off-by: Steven K <[email protected]>
  • Loading branch information
rh0dium committed Jun 19, 2023
1 parent 7d609e7 commit cbcbb1d
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,36 +115,36 @@ jobs:
name: Bandit Security Report
path: report.json


tests:
name: Python ${{ matrix.python-version }} / ${{ matrix.db }} / Django ${{ matrix.django-version}}
runs-on: ubuntu-latest
# continue-on-error: ${{ matrix.django-version == '~=4.2.0' }}
strategy:
max-parallel: 4
matrix:
db: [ sqlite, mysql ]
db: [ sqlite, mariadb ]
django-version: ["~=4.2.0" ]
python-version: [ "3.10" ]

services:
mariadb:
image: mariadb:latest
env:
MYSQL_ROOT_PASSWORD: password
MARIADB_ROOT_PASSWORD: password
ports:
- 3306:3306
options: >-
--health-cmd="mysqladmin ping"
--health-cmd="mariadb-admin ping"
--health-interval=10s
--health-timeout=5s
--health-retries=3
steps:
- name: Verify MySQL connection from host
if: matrix.db == 'mysql'
if: matrix.db == 'mariadb'
run: |
mysql --host 127.0.0.1 --port 3306 -uroot -ppassword -e "SHOW DATABASES" 2>&1 > /dev/null
mysql --host 127.0.0.1 --port 3306 -uroot -ppassword -V
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down Expand Up @@ -204,6 +204,7 @@ jobs:
- name: Combine Report Coverage
run: |
coverage combine coverage-*/.coverage
coverage report --precision=1 --sort=cover --skip-covered --skip-empty
coverage xml
- name: Upload coverage to Codecov
Expand Down

0 comments on commit cbcbb1d

Please sign in to comment.