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
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:
parent
c7846c43ab
commit
1dd3cfea09
@ -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
|
||||
|
@ -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
|
||||
|
2
Makefile
2
Makefile
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user