Skip to content

Commit dbe7a6d

Browse files
author
Lennard Wolf
committed
ci: trigger less actions
1 parent 07ab81a commit dbe7a6d

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Deploy vocs site to Pages
22

33
on:
44
# Runs on pushes targeting the default branch
5-
push:
6-
branches: ["main"]
5+
# push:
6+
# branches: ["main"]
77

88
# Allows you to run this workflow manually from the Actions tab
99
workflow_dispatch:

.github/workflows/python-checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
# max-parallel: 1
2828
fail-fast: false
2929
matrix:
30-
python-version: [3.11, 3.12]
30+
python-version: [3.12]
3131

3232
steps:
3333
- uses: actions/checkout@v4

Makefile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ bootstrap: python-version clean-venv venv ## Delete existing & create new venv
1616

1717
prod: in-venv ## install package dependencies
1818
# installing prod dependencies only...
19-
@uv pip install -r pyproject.toml
19+
uv pip install -r pyproject.toml
2020
.PHONY: prod
2121

2222
dev: prod ## install (all) dev dependencies
2323
# installing dev dependencies...
24-
@uv pip install -r pyproject.toml --all-extras -e .
24+
uv pip install -r pyproject.toml --all-extras -e .
2525
.PHONY: dev
2626

2727
bootstrap-dev: ## set up a fresh dev environment
@@ -34,8 +34,8 @@ bootstrap-dev: ## set up a fresh dev environment
3434

3535
setup-pre-commit: in-venv ## install pre-commit hooks
3636
# installing pre-commit hooks...
37-
@uvx pre-commit autoupdate
38-
@uvx pre-commit install && @uvx pre-commit install --hook-type commit-msg
37+
uvx pre-commit autoupdate
38+
uvx pre-commit install && uvx pre-commit install --hook-type commit-msg
3939
.PHONY: setup-pre-commit
4040

4141
setup-docs: in-venv ## install docs dependencies
@@ -49,9 +49,9 @@ build-docs: in-venv ## build docs
4949
.PHONY: build-docs
5050

5151
update: in-venv ## update lock file if needed
52-
@uv pip compile pyproject.toml --all-extras --upgrade --output-file requirements-dev.txt
53-
@uv sync
54-
@uvx pre-commit autoupdate
52+
uv pip compile pyproject.toml --all-extras --upgrade --output-file requirements-dev.txt
53+
uv sync
54+
uvx pre-commit autoupdate
5555
.PHONY: update
5656

5757
lint: in-venv ## Run linter on python files

0 commit comments

Comments
 (0)