Skip to content
This repository has been archived by the owner on Sep 15, 2024. It is now read-only.

Fix CI build problem #107

Fix CI build problem

Fix CI build problem #107

Workflow file for this run

name: pytest
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install pipenv
uses: dschep/install-pipenv-action@v1
- name: Install dependencies
run: |
pip3 install pipenv --upgrade
pipenv install --dev
- name: Test with pytest
run: |
pipenv run python -m pytest