Skip to content

Add xeger to tox.ini so that tox can run properly #6

Add xeger to tox.ini so that tox can run properly

Add xeger to tox.ini so that tox can run properly #6

Workflow file for this run

name: Python package
on:
- push
- pull_request
jobs:
build:
strategy:
matrix:
python-version: ["3.6", "3.8", "3.10", "3.12"]
platform: [ubuntu-20.04, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install 'tox<4' tox-gh-actions
- name: Test with tox
run: tox