Skip to content

chore(CI): clean up gha and unused files #822

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .github/workflows/ci_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,8 @@
name: integration-tests

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Run once a day
workflow_call:
# Keep the schedule to maintain daily runs
schedule:
- cron: '0 0 * * *'

Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/ci_static-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
name: static analysis

on:
pull_request:
push:
# Run once a day
workflow_call:
# Keep the schedule to maintain daily runs
schedule:
- cron: '0 0 * * *'

Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/ci_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
name: tests

on:
pull_request:
push:
# Run once a day
workflow_call:
# Keep the schedule to maintain daily runs
schedule:
- cron: '0 0 * * *'

Expand Down
27 changes: 27 additions & 0 deletions .github/workflows/pull.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Pull Request Checks

on:
pull_request:

jobs:
call-integration-tests:
name: Run Integration Tests
uses: ./.github/workflows/ci_integration.yml
call-static-analysis:
name: Run Static Analysis
uses: ./.github/workflows/ci_static-analysis.yaml
call-tests:
name: Run Tests
uses: ./.github/workflows/ci_tests.yaml
pr-ci-all-required:
if: always()
needs:
- call-integration-tests
- call-static-analysis
- call-tests
runs-on: ubuntu-22.04
steps:
- name: Verify all required jobs passed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}
16 changes: 16 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Push Checks

on:
push:
branches: master

jobs:
call-integration-tests:
name: Run Integration Tests
uses: ./.github/workflows/ci_integration.yml
call-static-analysis:
name: Run Static Analysis
uses: ./.github/workflows/ci_static-analysis.yaml
call-tests:
name: Run Tests
uses: ./.github/workflows/ci_tests.yaml
14 changes: 0 additions & 14 deletions codebuild/coverage/coverage.yml

This file was deleted.

18 changes: 0 additions & 18 deletions codebuild/python3.10.yml

This file was deleted.

18 changes: 0 additions & 18 deletions codebuild/python3.11.yml

This file was deleted.

23 changes: 0 additions & 23 deletions codebuild/python3.12.yml

This file was deleted.

18 changes: 0 additions & 18 deletions codebuild/python3.7.yml

This file was deleted.

18 changes: 0 additions & 18 deletions codebuild/python3.8.yml

This file was deleted.

18 changes: 0 additions & 18 deletions codebuild/python3.9.yml

This file was deleted.