Skip to content

Bump matplotlib from 3.9.1 to 3.9.1.post1 (#41) #154

Bump matplotlib from 3.9.1 to 3.9.1.post1 (#41)

Bump matplotlib from 3.9.1 to 3.9.1.post1 (#41) #154

Workflow file for this run

name: Python test and lint
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
pytest:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python_version: [3.11]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python_version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-ci.txt
pip install -r requirements.txt
- name: Lint with prospector
run: |
prospector --profile=prospector.yaml
- name: Test with pytest
run: |
pytest -vv --cov-config=.coveragerc --cov=./ --cov-report=xml
- name: Report code coverage
run: |
codecov