Skip to content

Merge pull request #56 from csdms/mdpiper/update-citation #40

Merge pull request #56 from csdms/mdpiper/update-citation

Merge pull request #56 from csdms/mdpiper/update-citation #40

Workflow file for this run

name: Format
on: [push, pull_request]
jobs:
format:
name: Check for lint and format code to a standard style
if:
github.event_name == 'push' || github.event.pull_request.head.repo.full_name !=
github.repository
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
miniforge-version: latest
python-version: 3.11
auto-activate-base: false
- name: Install nox
run: pip install nox
- name: Format code
run: nox -s format -- --check --verbose --diff