chore: request #44844 Update dev/build environment [W38 2025] #83
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: Tests | |
| permissions: read-all | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| tests: | |
| strategy: | |
| matrix: | |
| tuleap_functions: | |
| - "artifact-post-action/auto-assign" | |
| - "artifact-post-action/compute-risk" | |
| - "artifact-post-action/post-action-add-comment" | |
| runs-on: ubuntu-22.04 | |
| name: Tests (${{ matrix.tuleap_functions }}) | |
| defaults: | |
| run: | |
| working-directory: ${{ matrix.tuleap_functions }} | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - uses: cachix/install-nix-action@3715ab1a11cac9e991980d7b4a28d80c7ebdd8f9 # v27 | |
| - name: Prepare | |
| run: nix-shell --run "make prepare" | |
| - name: Tests | |
| run: nix-shell --pure --run "make tests" | |
| - name: Build | |
| run: nix-shell --pure --run "make build" |