QET FP dataset with READMD.md added(#743) #788
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: Lint | |
| on: [push, pull_request] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| enable-cache: true | |
| cache-dependency-glob: "uv.lock" | |
| - name: Install dependencies | |
| run: | | |
| uv sync --group lint | |
| - name: ruff | |
| run: | | |
| uv run ruff --version | |
| uv run ruff check src | |
| uv run ruff format src --check | |
| - name: mypy | |
| run: | | |
| uv run mypy --version | |
| rm -rf .mypy_cache | |
| uv run mypy -p matgl |