diff options
| author | Alex Schofield <git@ajschof.me> | 2024-08-15 15:32:53 +0100 |
|---|---|---|
| committer | Alex Schofield <git@ajschof.me> | 2024-08-15 15:32:53 +0100 |
| commit | 3ee88c87fbae7e9968c4fc7f9aae5e7f28581aad (patch) | |
| tree | ddae02d528d00443a78ffac3e163360ddfb5d87f /.github/workflows/on-commit.yml | |
| parent | ad89bf442b83c1a3cccb88bb29aac24f0d9d22de (diff) | |
| download | de-project-bentley-3ee88c87fbae7e9968c4fc7f9aae5e7f28581aad.tar.gz de-project-bentley-3ee88c87fbae7e9968c4fc7f9aae5e7f28581aad.zip | |
ci: separate python & terraform jobs
Diffstat (limited to '.github/workflows/on-commit.yml')
| -rw-r--r-- | .github/workflows/on-commit.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/on-commit.yml b/.github/workflows/on-commit.yml index 937aeaa..e4eb4f8 100644 --- a/.github/workflows/on-commit.yml +++ b/.github/workflows/on-commit.yml @@ -6,7 +6,7 @@ on: - 'main' jobs: - quality-checks: + python-quality-checks: runs-on: ubuntu-latest steps: - uses : actions/checkout@v4 @@ -25,6 +25,9 @@ jobs: - name : 'Python: Formatting' run: | black --check . + terraform-quality-checks: + runs-on: ubuntu-latest + steps: - name: 'Terraform: Setup' uses: hashicorp/setup-terraform@v3 with: @@ -37,4 +40,4 @@ jobs: run: terraform init -backend=false - name: 'Terraform: Validate' working-directory: ./terraform - run: terraform validate + run: terraform validate
\ No newline at end of file |
