Bump urllib3 from 1.26.9 to 1.26.17 #50
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
'on': | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- python-version: 3.8 | |
DATABASE_URL: 'sqlite:///tmp/ir-{envname}.sqlite3' | |
- python-version: 3.8 | |
DATABASE_URL: 'mysql://root:@127.0.0.1:3306/ir' | |
- python-version: 3.8 | |
DATABASE_URL: 'postgis://postgres:[email protected]:5432/testdb' | |
services: | |
postgres: | |
image: postgis/postgis:14-3.2-alpine | |
env: | |
POSTGRES_PASSWORD: password | |
POSTGRES_DB: testdb | |
ports: | |
- 5432:5432 | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
mysql: | |
image: mysql:8.0 | |
env: | |
MYSQL_ALLOW_EMPTY_PASSWORD: yes | |
MYSQL_DATABASE: ir | |
ports: | |
- 3306:3306 | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '${{ matrix.python-version }}' | |
cache: pip | |
- run: | | |
sudo apt-get update -y | |
sudo apt-get install -y --no-install-recommends libgdal30 | |
- run: pip install --upgrade pip setuptools wheel | |
- run: pip install mysqlclient psycopg2 -r requirements-dev.txt | |
- run: py.test -vv --cov . | |
env: | |
DEBUG: "1" | |
DATABASE_URL: ${{ matrix.DATABASE_URL }} | |
- uses: codecov/codecov-action@v3 |