[module api] Initial version #31
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 //... |