Skip to content

chore(deps) Update python Docker tag to v3.12.5 #134

chore(deps) Update python Docker tag to v3.12.5

chore(deps) Update python Docker tag to v3.12.5 #134

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
name: python ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest] #, macos-latest]
python-version: [3.7, 3.8, 3.9]
fail-fast: true
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: install deps
run: python -m pip install tox
- name: test
run: tox
- name: upload cov
uses: codecov/codecov-action@v3
with:
files: ./coverage.xml
fail_ci_if_error: true
verbose: true