Skip to content

build(deps): bump docker/build-push-action from 4 to 5 #25

build(deps): bump docker/build-push-action from 4 to 5

build(deps): bump docker/build-push-action from 4 to 5 #25

name: build
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install build environment
run: |
python -m pip install --upgrade pip
python -m pip install tox setuptools pytest pytest-cov codecov
- name: Build and test with tox.
run: |
tox