Update Rust version to 1.89 in build.gradle #717
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: Build & Test | |
| on: | |
| pull_request: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| get-branch-name: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Get branch name | |
| shell: bash | |
| # The workflow is triggered by pull_request so we use `GITHUB_BASE_REF` | |
| run: echo "branch_name=${GITHUB_BASE_REF}" >> $GITHUB_OUTPUT | |
| id: get_branch_name | |
| outputs: | |
| branch_name: ${{ steps.get_branch_name.outputs.branch_name }} | |
| run_cedar_java: | |
| name: run_cedar_java | |
| needs: get-branch-name | |
| uses: ./.github/workflows/run_cedar_java_reusable.yml | |
| with: | |
| cedar_policy_ref: "refs/heads/main" # use the latest commit on main | |
| cedar_java_ref: "${{ github.href }}" # use the current PR's commit |