Skip to content

Update transitive dependencies to latest #265

Update transitive dependencies to latest

Update transitive dependencies to latest #265

Workflow file for this run

name: ci
on:
push:
schedule:
- cron: '00 01 01 * *'
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [2.7, 3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v3
- name: build docker image
run: docker build -t bottle-ssl --build-arg PYTHON_VERSION=${{ matrix.python-version }} .
- name: run tests
run: docker run bottle-ssl poetry run py.test