Adding the new unit testing to a branch to refactor the particleset creation function #238
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: linting | |
on: | |
pull_request: | |
push: | |
jobs: | |
linting: | |
name: Linting with flake8 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Python setup | |
run: | | |
pip install wheel | |
pip install flake8 | |
- name: flake8 | |
run: | | |
python -m flake8 plasticparcels | |
python -m flake8 tests |