Skip to content

Update README.md

Update README.md #201

Workflow file for this run

name: test
on:
push:
branches:
- master
- tidy
pull_request:
branches: [ master ]
jobs:
build:
name: testing snipar on ${{ matrix.os }} ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
environment: TEST_PYPI_API_TOKEN
strategy:
matrix:
python-version: ['3.8']
os: [ubuntu-20.04]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install snipar
run: pip install .
- name: run tests
working-directory: ./snipar/tests
run: python3 -m unittest snipar.tests