Skip to content

Commit

Permalink
Allow linting and type checking to fail in CI - it is caught in pre-c…
Browse files Browse the repository at this point in the history
…ommit
  • Loading branch information
Yoshanuikabundi committed Jan 9, 2025
1 parent 752f1b0 commit 8cb7c1f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/gh-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,11 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macOS-latest, ubuntu-latest]
os: [ubuntu-latest]
python-version: ["3.11", "3.13"]
include:
- os: macos-latest
python-version: "3.11"

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -64,10 +67,12 @@ jobs:
micromamba list
- name: Lint
continue-on-error: true
run: |
ruff check openff
- name: Type check
continue-on-error: true
run: |
basedpyright openff
Expand Down

0 comments on commit 8cb7c1f

Please sign in to comment.