Pull request #547
This file contains 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: Pull Request | |
run-name: Pull request | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
permissions: | |
id-token: write # This is required for requesting the JWT | |
contents: read # This is required for actions/checkout | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # This is required for git show-ref to work | |
- name: Build and lint | |
uses: ./.github/actions/build-and-lint | |
Test: | |
runs-on: ubuntu-latest | |
needs: Build | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # This is required for git show-ref to work | |
- name: Test | |
uses: ./.github/actions/unit-test |