Skip to content

Merge pull request #136 from lifewatch/dependencies_clean_up #396

Merge pull request #136 from lifewatch/dependencies_clean_up

Merge pull request #136 from lifewatch/dependencies_clean_up #396

Workflow file for this run

name: ci
on:
push:
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
strategy:
fail-fast: false
matrix:
python-versions: ["3.9", "3.10", "3.11"]
os: [ ubuntu-20.04 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-versions }}
- name: Install dependencies
run: |
make init-test
- name: Run unit tests
run: |
PYPAM_TEST_NO_PLOTS= make test