ci: bugfixes with workflows, ref: NOISSUE
Some checks failed
Rename the project from template / rename-project (push) Has been skipped
SonarQube Scan / SonarQube Trigger (push) Has been skipped
CI / linter (9.0.X, ubuntu-latest) (push) Failing after 1m16s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been skipped

This commit is contained in:
Simon Diesenreiter 2024-12-02 06:40:54 +01:00
parent fd3956ebbd
commit 41f275025b
4 changed files with 9 additions and 1 deletions

View File

@ -38,3 +38,5 @@ mv $name.Tests/project_name.Tests.csproj $name.Tests/$name.Tests.csproj
# This command runs only once on GHA!
rm -rf .gitea/template.yml
rm -rf project_name
rm -rf project_name.Tests

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

@ -2,7 +2,7 @@
.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: