Skip to content

build(deps): bump actions/setup-python from 5.0.0 to 5.1.0 #1009

build(deps): bump actions/setup-python from 5.0.0 to 5.1.0

build(deps): bump actions/setup-python from 5.0.0 to 5.1.0 #1009

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" ]
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- 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@7afa10ed9b269c561c2336fd862446844e0cbf71
with:
files: coverage.xml
fail_ci_if_error: false
verbose: true