Skip to content

Reset history

Reset history #2

Workflow file for this run

name: Unit test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pipenv'
- name: Install pipenv
run: pip install pipenv
- name: Install dependencies
run: pipenv sync --dev
- name: Run tests
run: pipenv run test