Skip to content

add example

add example #253

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install pytest pytest-cov
- name: Pytest
run: pytest --cov=alpsplot --cov-report=xml
- name: Upload Codecov
uses: codecov/[email protected]