ci: bugfixes with workflows, ref: NOISSUE
Some checks failed
Rename the project from template / rename-project (push) Has been skipped
CI / linter (ubuntu-latest, 3.9) (pull_request) Failing after 14m51s
SonarQube Scan / SonarQube Trigger (pull_request) Failing after 14m39s
CI / tests_linux (ubuntu-latest, 3.9) (pull_request) Has been cancelled

This commit is contained in:
Simon Diesenreiter 2024-12-02 06:41:46 +01:00
parent c7846c43ab
commit 1dd3cfea09
3 changed files with 7 additions and 1 deletions

View File

@ -2,6 +2,9 @@
name: CI name: CI
env:
SKIP_MAKE_SETUP_CHECK: 'true'
# Controls when the workflow will run # Controls when the workflow will run
on: on:
# Triggers the workflow on push or pull request events but only for the main branch # 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: permissions:
contents: write contents: write
env:
SKIP_MAKE_SETUP_CHECK: 'true'
on: on:
push: push:
# Sequence of patterns matched against refs/tags # 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 .PHONY: issetup
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 .PHONY: setup
setup: setup: