Skip to content

build

build #181

Workflow file for this run

# This workflow runs CI tests: it installs Python dependencies and run tests across a variety of Python versions
name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
# Tag ubuntu version to 20.04, in order to support python 3.6
# See issue: https://github.com/actions/setup-python/issues/544
# When ready to drop 3.6, can revert from 'ubuntu-20.04' -> 'ubuntu-latest'
runs-on: ubuntu-20.04
env:
MODULE_NAME: convnwb
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install pytest-cov
pip install -r requirements.txt
pip install -r optional-requirements.txt
- name: Test with pytest
run: |
pytest --cov=./
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3