Skip to content

chore: remove file from other feature branch #124

chore: remove file from other feature branch

chore: remove file from other feature branch #124

Workflow file for this run

name: Tests
on: [push]
jobs:
Test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
pip install .[test]
- name: Run Tests
run: tox