workflows: added missing mac_override check #6
Workflow file for this run
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: Check missing mac_overrides | ||
on: [push, pull_request] # yamllint disable-line rule:truthy | ||
jobs: | ||
mac_override_missing__check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout main branch | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: main | ||
fetch-depth: 0 | ||
- name: Checkout current branch | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.ref }} | ||
fetch-depth: 0 | ||
- name: Run mac_override missing check | ||
run: | | ||
./.github/checks/check-mac-overrides-missing.sh |