Allow to enable half and bfloat16 at the same time #7388
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: OnSyncPR-Check | |
on: | |
pull_request_target: | |
types: [opened,synchronize] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
jobs: | |
check-format: | |
if: github.event.pull_request.author_association == 'COLLABORATOR' || github.event.pull_request.author_association == 'MEMBER' || github.event.pull_request.author_association == 'OWNER' | |
uses: ./.github/workflows/check-formatting.yml | |
secrets: inherit | |
check-wiki-changelog: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.author_association == 'COLLABORATOR' || github.event.pull_request.author_association == 'MEMBER' || github.event.pull_request.author_association == 'OWNER' | |
steps: | |
- name: Checkout the latest code (shallow clone) | |
uses: actions/checkout@v4 | |
with: | |
ref: develop | |
- name: Check if PR number exists in wiki/Changelog | |
env: | |
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }} | |
run: .github/check-wiki-changelog.sh | |
spell-check: | |
name: Spell Check with Typos | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check for typos | |
uses: crate-ci/typos@master | |
with: | |
config: .github/_typos.toml |