Skip to content

Add schedule runs and on-demand runs to workflows #86

Add schedule runs and on-demand runs to workflows

Add schedule runs and on-demand runs to workflows #86

Workflow file for this run

# This workflow will install Python dependencies, run tests, run linting, and test building docs
name: Codestyle and Linting
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest]
python-version: [3.9]
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: |
pip install pip setuptools wheel --upgrade
# Install spacepy without build isolation to avoid issues with numpy
pip install numpy
pip install spacepy --no-build-isolation
python -m pip install -e '.[style]'
- name: Lint with Black
run: |
black --check --diff hermes_eea
- name: flake8
run: |
flake8 --count hermes_eea