diff --git a/.github/workflows/lint-repo.yml b/.github/workflows/lint-repo.yml index 9863aa7..fb14b2a 100644 --- a/.github/workflows/lint-repo.yml +++ b/.github/workflows/lint-repo.yml @@ -1,4 +1,4 @@ on: push jobs: lint-repo-and-markdown: - uses: simatic-ax/actions/.github/workflows/check-repository.yml@stable + uses: simatic-ax/actions/.github/workflows/check-repository.yml@test_repo_lint_fabian_unglert diff --git a/repolint.json b/repolint.json deleted file mode 100644 index 4dff505..0000000 --- a/repolint.json +++ /dev/null @@ -1,158 +0,0 @@ -{ - "$schema": "./schema.json", - "version": 2, - "axioms": { - "linguist": "language", - "licensee": "license", - "packagers": "packager" - }, - "rules": { - "license-file-exists": { - "level": "error", - "rule": { - "type": "file-existence", - "options": { - "globsAny": [ "LICENSE.md" ], - "nocase": true - } - } - }, - "readme-file-exists": { - "level": "error", - "rule": { - "type": "file-existence", - "options": { - "globsAny": [ "README*.md" ], - "nocase": true - } - } - }, - "readme-references-license": { - "level": "error", - "rule": { - "type": "file-contents", - "options": { - "globsAll": [ "README*" ], - "content": "license", - "flags": "i" - } - } - }, - "binaries-not-present": { - "level": "warning", - "rule": { - "type": "file-type-exclusion", - "options": { - "type": [ "**/*.exe", "**/*.dll", "!node_modules/**" ] - } - } - }, - "test-directory-exists": { - "level": "warning", - "rule": { - "type": "directory-existence", - "options": { - "globsAny": [ "**/test*" ], - "nocase": true - } - } - }, - "source-directory-exists": { - "level": "warning", - "rule": { - "type": "directory-existence", - "options": { - "globsAny": [ "**/src*" ], - "nocase": true - } - } - }, - "additional-docs-directory-exists": { - "level": "warning", - "rule": { - "type": "directory-existence", - "options": { - "globsAny": [ "**/docs*" ], - "nocase": true - } - } - }, - "integrates-with-ci": { - "level": "error", - "rule": { - "type": "file-existence", - "options": { - "globsAny": [ - ".github/workflows/*" - ] - } - } - }, - "markdownlint-config-exit": { - "level": "error", - "rule": { - "type": "file-existence", - "options": { - "globsAny": [ - ".markdownlint.yml" - ] - } - } - }, - "apax-yml-exit": { - "level": "error", - "rule": { - "type": "file-existence", - "options": { - "globsAny": [ - "apax.yml" - ] - } - } - }, - "gitignore-exit": { - "level": "error", - "rule": { - "type": "file-existence", - "options": { - "globsAny": [ - ".gitignore" - ] - } - } - }, - "gitattributes-exit": { - "level": "error", - "rule": { - "type": "file-existence", - "options": { - "globsAny": [ - ".gitattributes" - ] - } - } - }, - "apax-files-section-exit": { - "level": "error", - "rule": { - "type": "file-existence", - "options": { - "globsAny": [ - "apax-files-section.yml" - ] - } - } - }, - "CODEOWNERS-exit": { - "level": "error", - "rule": { - "type": "file-existence", - "options": { - "globsAny": [ - "CODEOWNERS" - ] - } - } - } - } -} diff --git a/src/MainProgram.st b/src/MainProgram.st index 848cab7..216ea13 100644 --- a/src/MainProgram.st +++ b/src/MainProgram.st @@ -19,4 +19,6 @@ PROGRAM MainProgram QYe := TrafficLight.GetState(Colors#Yellow); QGn := TrafficLight.GetState(Colors#Green); ActiveStateName := StateController.GetActiveStateName(); -END_PROGRAM \ No newline at end of file +END_PROGRAM + +// test 10 \ No newline at end of file