Skip to content

build(deps-dev): bump pyparsing from 3.0.9 to 3.1.1 #60

build(deps-dev): bump pyparsing from 3.0.9 to 3.1.1

build(deps-dev): bump pyparsing from 3.0.9 to 3.1.1 #60

Workflow file for this run

name: Test
on:
push:
branches:
- main
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
name: Python ${{ matrix.python-version }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install poetry
run: pip install poetry
- name: Install dependencies
run: poetry install
- name: Lint project
run: poetry run poe lint
- name: Test package
run: poetry run poe test
- name: Upload coverage
uses: codecov/codecov-action@v3
with:
files: reports/coverage.xml