Skip to content

chore(deps): update actions/checkout digest to 44c2b7a #89

chore(deps): update actions/checkout digest to 44c2b7a

chore(deps): update actions/checkout digest to 44c2b7a #89

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches: [ main ]
jobs:
ubuntu_build:
runs-on: ubuntu-22.04
env:
CC: clang
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4
- uses: cgrindel/gha_set_up_bazel@v1
with:
repo_name: gha_join_jobs
- name: Test
shell: bash
run: |
bazelisk test //...
another_job:
runs-on: ubuntu-22.04
steps:
- name: Succeed
shell: bash
run: |
echo "All is well!"
all_tests:
runs-on: ubuntu-22.04
needs: [ubuntu_build, another_job]
if: ${{ always() }}
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4
- uses: ./
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
checkout_ref: ${{ github.head_ref }}