Skip to content

Fixed bugs; added is_optimizable() and simplify() to AnsiStr; updated… #58

Fixed bugs; added is_optimizable() and simplify() to AnsiStr; updated…

Fixed bugs; added is_optimizable() and simplify() to AnsiStr; updated… #58

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python: [3.6.7, 3.7.17, 3.8.18, 3.9.18, 3.10.13, 3.11.5]
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install Tox and any other packages
run: pip install tox
- name: Run Tox
run: tox -e py