workflows: added missing mac_override check #9
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 branch | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: main | ||
fetch-depth: 0 | ||
# Step 2: Fetch the main branch | ||
- name: Checkout main branch | ||
run: | | ||
git fetch origin main | ||
git checkout main | ||
git checkout - | ||
- name: Run mac_override missing check | ||
run: | | ||
./.github/checks/check-mac-overrides-missing.sh |