Skip to content
This repository was archived by the owner on Jul 21, 2026. It is now read-only.

Bump actions/setup-python from 5 to 7 #158

Bump actions/setup-python from 5 to 7

Bump actions/setup-python from 5 to 7 #158

Workflow file for this run

name: Run unit tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Unit Tests
run: tox -epy3