Skip to content

Commit

Permalink
Remove version checking in GA
Browse files Browse the repository at this point in the history
  • Loading branch information
diversemix committed Aug 19, 2024
1 parent e5b254f commit 40feb14
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,9 @@ permissions: write-all
jobs:

code-quality:
if: |
! cancelled() && always() &&
(needs.check-auto-tagging-will-work.result == 'skipped' || needs.check-auto-tagging-will-work.result == 'success') &&
! startsWith(github.ref, 'refs/tags')
uses: climatepolicyradar/reusable-workflows/.github/workflows/python-precommit-validator.yml@v11

test:
if: |
! cancelled() && always() &&
(needs.check-auto-tagging-will-work.result == 'skipped' || needs.check-auto-tagging-will-work.result == 'success') &&
! startsWith(github.ref, 'refs/tags')
runs-on: ubuntu-latest
steps:
- name: Install latest Docker Compose
Expand Down Expand Up @@ -58,9 +50,3 @@ jobs:
- name: Run Tests
run: pytest -vvv tests/unit_tests

git-tag-release:
if: ${{ ! cancelled() && always() && (needs.test.result == 'success' && needs.code-quality.result == 'success')}}
needs:
- test
- code-quality
uses: climatepolicyradar/reusable-workflows/.github/workflows/git.yml@v11

0 comments on commit 40feb14

Please sign in to comment.