New Version of TrueTool

This commit is contained in:
Kjeld Schouten-Lebbing
2022-06-14 10:36:45 +02:00
parent e487c84139
commit 975493bb85
21 changed files with 907 additions and 433 deletions

26
.github/workflows/shellcheck.yml vendored Normal file
View File

@@ -0,0 +1,26 @@
on:
push:
pull_request:
workflow_dispatch:
name: 'Lint and Test'
jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
with:
check_together: 'yes'
env:
SHELLCHECK_OPTS: -e SC2154
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: pre-commit/action@v3.0.0