Skip to content

bump: version 0.3.4 → 0.3.5 #14

bump: version 0.3.4 → 0.3.5

bump: version 0.3.4 → 0.3.5 #14

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
- name: Run tests
run: |
cd tests && pytest
# - name: Build documentation
#run: |
#sudo apt update && apt install -y doxygen
#cd docs && make html