Skip to content

Commit

Permalink
Add Pylint run to build
Browse files Browse the repository at this point in the history
  • Loading branch information
oana-ctrl committed Jul 4, 2024
1 parent 9146f04 commit 1be7da1
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Same key-value pairs as in "Defining Our Workflow" section
name: CI
on: push
jobs:
build:

# Here we add the matrices definition:
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: ["3.10", "3.11"]

# Here we add the reference to the os matrix values
runs-on: ${{ matrix.os }}

# Same key-value pairs as in "Defining Our Workflow" section
steps:

- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
with:
# Here we add the reference to the python-version matrix values
python-version: ${{ matrix.python-version }}
# Same steps as in "Defining Our Workflow" section
- name: Install Python dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements.txt
- name: Test with PyTest
run: |
python3 -m pytest --cov=catchment.models tests/test_models.py
- name: Check style with Pylint
run: |
python3 -m pylint --fail-under=8 --reports=y inflammation

0 comments on commit 1be7da1

Please sign in to comment.