manifest: Update NRF #1711
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: On PR action | |
| on: | |
| pull_request: | |
| jobs: | |
| verify_PR: | |
| uses: ./.github/workflows/validate_code_style.yml | |
| with: | |
| reference_commit: ${{ github.event.pull_request.base.sha }} | |
| save_pr_number: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Save PR number to file | |
| run: | | |
| echo "${{ github.event.number }}" > PR_number | |
| - name: Upload build artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: PR_number | |
| path: | | |
| PR_number | |
| include-hidden-files: true | |
| build_samples: | |
| name: Build samples | |
| uses: ./.github/workflows/samples_build.yml | |
| build_and_run_tests: | |
| name: Build and run unit tests | |
| uses: ./.github/workflows/run_tests.yml |