Skip to content

Added automated test infrastructure #1

Added automated test infrastructure

Added automated test infrastructure #1

Workflow file for this run

name: Tests
on:
push:
branches: 'master'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Install build dependencies
run: python -m pip install -U hatch hatch-vcs
- name: Run tests
run: hatch test --cover-quiet --randomize