Skip to content

Commit

Permalink
Add linting.yml to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
aphearin committed Jan 15, 2024
1 parent 9fa0bb4 commit c6b7e8e
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: linting

on:
push:
branches:
- main
pull_request: null

jobs:
tests:
name: tests
runs-on: "ubuntu-latest"

steps:
- uses: actions/checkout@v2

- uses: conda-incubator/setup-miniconda@v2
with:
python-version: 3.9
channels: conda-forge,defaults
channel-priority: strict
show-channel-urls: true
miniforge-version: latest
miniforge-variant: Mambaforge

- name: configure conda and install code
# Test against latest releases of each code in the dependency chain
shell: bash -l {0}
run: |
conda config --set always_yes yes
mamba install --quiet \
--file=requirements.txt
python -m pip install --no-deps -e .
mamba install -y -q \
flake8 \
pytest \
pytest-xdist \
pytest-cov \
pip \
setuptools \
"setuptools_scm>=7,<8" \
python-build \
flake8-pyproject
python -m pip install --no-build-isolation --no-deps -e .
- name: lint
shell: bash -l {0}
run: |
flake8 diffmah

0 comments on commit c6b7e8e

Please sign in to comment.