Skip to content

[module api] Initial version #31

[module api] Initial version

[module api] Initial version #31

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 //...