Skip to content

Merge pull request #26 from extrawest/feature/configurable-trailing-s… #118

Merge pull request #26 from extrawest/feature/configurable-trailing-s…

Merge pull request #26 from extrawest/feature/configurable-trailing-s… #118

Workflow file for this run

name: Testing Python Package
on: [push]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv install --dev
- name: Run tests
run: |
pipenv run pytest