Skip to content

Use GitHub Actions for testing #4

Use GitHub Actions for testing

Use GitHub Actions for testing #4

Workflow file for this run

on:
push:
branches:
- "master"
pull_request:
branches:
- "master"
jobs:
test:
runs-on: "ubuntu-20.04"
steps:
- uses: "actions/checkout@v4"
- uses: "actions/setup-python@v5"
with:
cache: "pipenv"
- run: "python -m pip install pipenv"
- run: "pipenv install --dev"
- run: "make test"