diff options
| author | Alex Schofield <git@ajschof.me> | 2024-08-15 14:53:58 +0100 |
|---|---|---|
| committer | Alex Schofield <git@ajschof.me> | 2024-08-15 14:53:58 +0100 |
| commit | 1c80682afe1ace3ad96982233b90e255ed9b4a20 (patch) | |
| tree | 7808b884407d1926fe165315c5664e2bc0bb16ee | |
| parent | 47a7b818cdbbde6b6a5f30c533909d41d16355f0 (diff) | |
| download | de-project-bentley-1c80682afe1ace3ad96982233b90e255ed9b4a20.tar.gz de-project-bentley-1c80682afe1ace3ad96982233b90e255ed9b4a20.zip | |
ci: remove check if py files exist
since we have some python/terraform files now, we shouldn't require
this now!
| -rw-r--r-- | .github/workflows/on-commit.yml | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/.github/workflows/on-commit.yml b/.github/workflows/on-commit.yml index e429651..2b6061c 100644 --- a/.github/workflows/on-commit.yml +++ b/.github/workflows/on-commit.yml @@ -6,23 +6,7 @@ on: - 'main' jobs: - check-if-py-files-exist: - runs-on: ubuntu-latest - outputs: - py_files_exist: ${{ steps.check.outputs.py_files_exist }} - steps: - - uses: actions/checkout@v2 - - id: check_files - run: | - if [ -n "$(find . -name '*.py')" ]; then - echo "::set-output name=py_files_exist::true" - else - echo "::set-output name=py_files_exist::false" - fi - quality-checks: - needs: check-if-py-files-exist - if: ${{ needs.check-if-py-files-exist.outputs.py_files_exist == 'true' }} runs-on: ubuntu-latest steps: - uses : actions/checkout@v2 |
