Update project structure with the latest template #10
This file contains 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: New pull request received | ||
on: [pull_request, workflow_dispatch] | ||
jobs: | ||
check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
uses: astral-sh/setup-uv@v5 | ||
Check failure on line 14 in .github/workflows/python-check.yaml GitHub Actions / New pull request receivedInvalid workflow file
|
||
with: | ||
enable-cache: true | ||
version: "latest" | ||
- name: Install dependencies | ||
run: | | ||
uv tool install invoke | ||
inv env.init-dev --no-pre-commit | ||
- name: Run pre-commit hooks | ||
run: | | ||
SKIP=no-commit-to-branch,commitizen-branch inv run-pre-commit-hooks |