Allow missing/empty cycle time files in timeseries #627
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: Python Coding Norms | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
pycodestyle: | |
name: Check Python Coding Norms | |
runs-on: ubuntu-latest | |
steps: | |
# Setup Python | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
# Update conda | |
- name: Update conda | |
run: conda update -n base -c defaults conda | |
# Install pycodestyle | |
- name: Install pycodestyle | |
run: conda install -c conda-forge pycodestyle | |
# Clone the eva code | |
- name: Clone eva repo | |
uses: actions/checkout@v2 | |
# Run python codestyle | |
- name: Run python codestyle | |
run: $CONDA/bin/python3 pycodestyle_run.py |