Merge pull request 'ci: bugfixes with workflows, ref: NOISSUE' (!3) from sidiesen/update into main
Some checks failed
Rename the project from template / rename-project (push) Has been skipped
SonarQube Scan / SonarQube Trigger (push) Has been skipped
CI / linter (ubuntu-latest, 3.9) (push) Failing after 9s
CI / tests_linux (ubuntu-latest, 3.9) (push) Has been skipped

Reviewed-on: #3
This commit is contained in:
Simon Diesenreiter 2024-12-01 21:43:37 -08:00
commit 66a2ee5a08
3 changed files with 7 additions and 1 deletions

View File

@ -2,6 +2,9 @@
name: CI
env:
SKIP_MAKE_SETUP_CHECK: 'true'
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch

View File

@ -2,6 +2,9 @@ name: Upload Python Package
permissions:
contents: write
env:
SKIP_MAKE_SETUP_CHECK: 'true'
on:
push:
# Sequence of patterns matched against refs/tags

View File

@ -4,7 +4,7 @@ USING_POETRY=$(shell grep "tool.poetry" pyproject.toml && echo "yes")
.PHONY: issetup
issetup:
@[ -f .git/hooks/commit-msg ] || (echo "You must run 'make setup' first to initialize the repo!" && exit 1)
@[ -f .git/hooks/commit-msg ] || [ -v SKIP_MAKE_SETUP_CHECK ] || (echo "You must run 'make setup' first to initialize the repo!" && exit 1)
.PHONY: setup
setup: