Feature/add icon packs #19
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 | |
- name: Install the latest version of uv | |
uses: astral-sh/setup-uv@v5 | |
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 |