Skip to content

Merge pull request #71 from espdev/update-deps #60

Merge pull request #71 from espdev/update-deps

Merge pull request #71 from espdev/update-deps #60

Workflow file for this run

name: main
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
tests:
runs-on: ${{ matrix.platform }}
strategy:
max-parallel: 8
matrix:
platform:
- ubuntu-latest
- macos-latest
- windows-latest
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12" ]
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 setuptools wheel
python -m pip install -e .[tests]
- name: Unit Tests
run: pytest -v --color=yes --cov=csaps --cov-report=term --cov-report=lcov:coverage.info
- name: Coveralls
if: ${{ matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.11' }}
uses: coverallsapp/github-action@v2
with:
format: lcov
file: coverage.info
- name: flake8 Static Analysis
if: ${{ matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.11' }}
run: flake8 csaps/ tests/ setup.py
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install -e .[docs]
- name: Build Docs
run: make -C docs/ html