Skip to content

fix: prevent argparse from eating up abbreviated args that should be passed to the runner #51

fix: prevent argparse from eating up abbreviated args that should be passed to the runner

fix: prevent argparse from eating up abbreviated args that should be passed to the runner #51

Workflow file for this run

name: Lint & test
on:
push:
branches:
- 'main'
- 'master'
paths-ignore:
- 'docs/**'
- 'README.md'
pull_request:
workflow_dispatch:
workflow_call:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Run pre-commit hooks
uses: pre-commit/[email protected]
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
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 tox-gh-actions
- name: Test with tox
run: tox