From a7c8d4acfe4bc0cecd4dcd82ced5f9dad1066c6d Mon Sep 17 00:00:00 2001 From: Oskar Manhart <52569953+oskardotglobal@users.noreply.github.com> Date: Wed, 4 Sep 2024 17:00:15 +0200 Subject: [PATCH] feat: run lictool seperately in CI --- .github/workflows/lictool.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/lictool.yaml diff --git a/.github/workflows/lictool.yaml b/.github/workflows/lictool.yaml new file mode 100644 index 0000000..844d898 --- /dev/null +++ b/.github/workflows/lictool.yaml @@ -0,0 +1,20 @@ +on: + pull_request: + push: + branches: [main] + +jobs: + lictool: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - uses: actions/setup-python@v4 + with: + python-version: 3.x + + - uses: pre-commit/action@v3.0.1 + extra_args: license-tools + + - uses: pre-commit-ci/lite-action@v1.0.2 + if: always()