Skip to content

Several spelling and grammatical fixes. #24

Several spelling and grammatical fixes.

Several spelling and grammatical fixes. #24

Workflow file for this run

name: CI Pipeline
on:
push:
branches: 'master'
pull_request:
branches: '*'
jobs:
build:
runs-on: ubuntu-18.04
strategy:
max-parallel: 4
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
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