|
15 | 15 | strategy: |
16 | 16 | fail-fast: false |
17 | 17 | matrix: |
18 | | - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] |
| 18 | + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"] |
19 | 19 | os: [ubuntu-24.04] |
20 | 20 | runs-on: ${{ matrix.os }} |
21 | 21 | name: "${{ matrix.os }} Python: ${{ matrix.python-version }}" |
@@ -45,17 +45,17 @@ jobs: |
45 | 45 | run: | |
46 | 46 | sudo apt-get update |
47 | 47 | sudo apt-get install binutils libproj-dev gdal-bin libmemcached-dev libsqlite3-mod-spatialite |
48 | | - - uses: actions/checkout@v4 |
| 48 | + - uses: actions/checkout@v5 |
49 | 49 | with: |
50 | 50 | fetch-depth: 0 |
51 | 51 | - name: Set up Python ${{ matrix.python-version }} |
52 | | - uses: actions/setup-python@v5 |
| 52 | + uses: actions/setup-python@v6 |
53 | 53 | with: |
54 | 54 | python-version: ${{ matrix.python-version }} |
55 | 55 | - name: Install dependencies |
56 | 56 | run: | |
57 | | - pip install -U "pip>=23.1.1" |
58 | | - pip install -U "tox-gh-actions==3.3.0" coverage |
| 57 | + pip install --upgrade "pip>=23.1.1" |
| 58 | + pip install --upgrade "tox-gh-actions==3.3.0" coverage |
59 | 59 | - name: Log versions |
60 | 60 | run: | |
61 | 61 | python --version |
|
69 | 69 | PGHOST: localhost |
70 | 70 | PGPORT: 5432 |
71 | 71 | run: | |
72 | | - psql -U postgres -c 'CREATE DATABASE postgis' |
73 | | - psql -U postgres postgis -c 'CREATE EXTENSION IF NOT EXISTS postgis;' |
| 72 | + psql --user postgres -c 'CREATE DATABASE postgis' |
| 73 | + psql --user postgres postgis -c 'CREATE EXTENSION IF NOT EXISTS postgis;' |
74 | 74 | mysql --protocol=TCP --user=root -e 'create database django_prometheus_1;' |
75 | 75 | - name: Run test and linters via Tox |
76 | 76 | run: tox |
|
0 commit comments