replace aircraft bias CSV files with new nc4 files to use with updated bias correction #1173
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 swell code | |
- name: Clone swell repo | |
uses: actions/checkout@v2 | |
# Run python codestyle | |
- name: Run python codestyle | |
run: $CONDA/bin/python3 pycodestyle_run.py |