Skip to content

build(deps): bump softprops/action-gh-release from 2.0.8 to 2.0.9 #49

build(deps): bump softprops/action-gh-release from 2.0.8 to 2.0.9

build(deps): bump softprops/action-gh-release from 2.0.8 to 2.0.9 #49

Workflow file for this run

name: Run Python Unit Tests
on:
pull_request:
branches:
- master
jobs:
tests:
strategy:
fail-fast: false
matrix:
os:
- macos-12
- ubuntu-22.04
- windows-2022
python-version:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/[email protected]
- name: Install Python 3
uses: actions/[email protected]
with:
cache: 'pip'
check-latest: true
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install tox tox-gh-actions
- name: Test with tox
run: tox