Skip to content

docs for v0.4.2

docs for v0.4.2 #37

Workflow file for this run

name: Python Test
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[test]
- name: Test
run: |
branb test
- uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true