Skip to content

Interactive plot

Interactive plot #62

name: "Run tests without development dependencies"
on: ["push", "pull_request"]
jobs:
build:
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: "actions/checkout@v3"
- name: "Set up Python ${{ matrix.python-version }}"
uses: "actions/setup-python@v4"
with:
python-version: "${{ matrix.python-version }}"
- name: "Cache pip"
uses: "actions/cache@v3"
with:
# This path is specific to Ubuntu
path: "~/.cache/pip"
# Look to see if there is a cache hit for the corresponding requirements file
key: "${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}"
restore-keys: |
${{ runner.os }}-pip-${{ runner.os }}-
- name: "Install dependencies"
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
pip install -e .
- name: "Test with pytest"
run: |
pytest