Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Merge pull request #7 from juju-solutions/evilnick-patch-1 #28

Merge pull request #7 from juju-solutions/evilnick-patch-1

Merge pull request #7 from juju-solutions/evilnick-patch-1 #28

Workflow file for this run

name: Run tests with Tox
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.6', '3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- name: Install Tox and any other packages
run: pip install tox
- name: Run Tox
run: tox -e py # Run tox using the version of Python in `PATH`