Skip to content

add data and plotting #1

add data and plotting

add data and plotting #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
defaults:
run:
shell: bash -l {0}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- name: Clone repo
uses: actions/checkout@v3
- name: Set up environment
uses: mamba-org/provision-with-micromamba@main
with:
extra-specs: python=${{ matrix.python-version }}
cache-env: true
- name: Install the library
run: pip install ./
- name: Run tests
run: nbdev_test --do_print --timing