Skip to content

refactor: update pyparsing calls and fix pylint #29

refactor: update pyparsing calls and fix pylint

refactor: update pyparsing calls and fix pylint #29

Workflow file for this run

name: Python package
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-22.04
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: Running tests for ${{ matrix.python-version }} with tox
uses: ymyzk/run-tox-gh-actions@main
- name: Publish coverage
if: ${{ matrix.python-version == 3.9 }}
run: tox -e coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}