Skip to content

Remove -c flag so arguments are correctly handled #32

Remove -c flag so arguments are correctly handled

Remove -c flag so arguments are correctly handled #32

Workflow file for this run

name: Tests
on:
push:
branches: [master]
pull_request:
branches:
- master
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
test:
strategy:
matrix:
version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, windows-latest, macos-13, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up python ${{ matrix.version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.version }}
- name: Install dependencies
run: pip install tox
- name: Run tests for python ${{ matrix.version }}
run: tox -e py$(tr -d '.' <<< '${{ matrix.version }}')