Skip to content

Bump actions/setup-python from 4.7.0 to 4.7.1 #321

Bump actions/setup-python from 4.7.0 to 4.7.1

Bump actions/setup-python from 4.7.0 to 4.7.1 #321

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
steps:
- uses: actions/checkout@v4.1.1
- name: Set up Python 3.8
uses: actions/setup-python@v4.7.1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
shell: bash
run: |
pip install tox
- name: Run Tox
shell: bash
run: |
tox