Skip to content

[dependabot] Chore: Bump actions/setup-python from 5.1.1 to 5.2.0 #3

[dependabot] Chore: Bump actions/setup-python from 5.1.1 to 5.2.0

[dependabot] Chore: Bump actions/setup-python from 5.1.1 to 5.2.0 #3

Workflow file for this run

name: CI-tox
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
python-version: "3.9"
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Setup Python"
uses: actions/setup-python@v5.2.0
with:
python-version: ${{ env.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run auto-tests
run: tox