Skip to content

Bump version to 1.0.0 build 1 #62

Bump version to 1.0.0 build 1

Bump version to 1.0.0 build 1 #62

Workflow file for this run

name: Pytest
on:
push:
branches: [ main, release-1.0.0]
pull_request:
branches: [ main, release-1.0.0]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[test]
- name: Run tests
run: |
pytest