Skip to content

build(deps): bump docker/login-action from 3.1.0 to 3.2.0 #1118

build(deps): bump docker/login-action from 3.1.0 to 3.2.0

build(deps): bump docker/login-action from 3.1.0 to 3.2.0 #1118

Workflow file for this run

name: Tests and Lint
on:
workflow_dispatch:
pull_request:
push:
branches:
- "main"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-versions: [ "3.10", "3.11", "3.12" ]
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d
with:
python-version: ${{ matrix.python-versions }}
- name: Install tox and coverage
run: pip install tox tox-gh-actions
- name: Run Python tests
run: tox -r
- name: Codecov
uses: codecov/codecov-action@125fc84a9a348dbcf27191600683ec096ec9021c
with:
files: coverage.xml
fail_ci_if_error: false
verbose: true