fix(debugger): use correct path for translator (#239) #32
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 Scripts Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - '**' | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| checks: write | |
| jobs: | |
| scripts: | |
| name: Run Scripts Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the code | |
| uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Run Scripts Tests | |
| run: make test-scripts | |
| - name: Upload Coverage to Coveralls | |
| if: ${{ !env.ACT }} | |
| uses: coverallsapp/github-action@v2 | |
| with: | |
| file: ./scripts/coverage.xml | |
| fail-on-error: false | |
| - name: Display Scripts Coverage Metrics | |
| if: ${{ !env.ACT }} | |
| uses: 5monkeys/cobertura-action@v14 | |
| with: | |
| report_name: "Scripts Coverage" | |
| path: ./scripts/coverage.xml | |
| minimum_coverage: "50" |