Skip to content

Add sbom generation tooling (#2232) #148

Add sbom generation tooling (#2232)

Add sbom generation tooling (#2232) #148

Workflow file for this run

name: Run Python Basics Integration and Unit Tests
on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
code:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4.2.2
- name: Run python_basics integration tests
run: |
cd python_basics/integration_tests
bazel test //...
- name: Run starpls integration tests
run: |
cd starpls/integration_tests
bazel test //...
- name: Run cr_checker unit tests
run: |
cd cr_checker/tests
bazel test //...
- name: Run coverage module tests
run: |
bazel test //coverage/tests:all
- name: Run rules_score tests
run: |
bazel test //bazel/rules/rules_score/...