Skip to content

Bump actions/checkout from 3 to 4 #353

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #353

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.7
uses: actions/setup-python@v4
with:
python-version: '3.7'
- name: Install dependencies with pip
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-docs.txt
- name: Build documentation
working-directory: docs
run: sphinx-build -M html source build -W
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.7, 3.8]
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies with pip
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install distributed
- name: Test with pytest
run: |
pip install pytest pytest-cov
echo `pwd`
ls -al
pytest --verbosity=3 --cov=./ --cov-config=.coveragerc --cov-report xml:cov.xml --cov-report term-missing --disable-pytest-warnings
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
file: ./cov.xml # optional
flags: unittests # optional
name: codecov-github # optional
fail_ci_if_error: true # optional (default = false)
- name: Lint with pylint (tests used at NOC)
run: |
pip install pylint
pylint pyowc
- name: Lint with flake8 (new at Github)
run: |
pip install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics