Add apar to the netCDF file. To write out apar, set write_apar_vs_tim… #590
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: Tests | |
on: push | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
fprettify: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
- name: Fix formatting with fprettify | |
run: | | |
pip install fprettify | |
fprettify --version | |
fprettify --config-file .fprettify.conf $(git ls-files | grep -E "\.f[p9][p0]") | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "[skip ci] Apply fprettify changes" | |