Merge pull request #65 from EBjerrum/AD_estimators_cleanup #51
This file contains hidden or 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: Code Quality Checks | |
| on: [ push, pull_request ] | |
| jobs: | |
| ruff-checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Check code formatting | |
| uses: astral-sh/ruff-action@v3 | |
| with: | |
| version: 0.8.6 | |
| args: "format --check" | |
| src: "./scikit_mol" | |
| - name: Check code style | |
| uses: astral-sh/ruff-action@v3 | |
| with: | |
| version: 0.8.6 | |
| args: "check" | |
| src: "./scikit_mol" | |