feat(battery_plus): Add battery save mode check on MacOS #494
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: all_plugins | |
# Workflow to skip required checks if no plugin code changed | |
# Name of the workflow itself and its jobs should correspond to required checks that needs to be skipped | |
# More info can be found here: https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks | |
on: | |
pull_request: | |
paths: | |
- "**.md" | |
jobs: | |
check_formatting: | |
name: "Check code formatting" | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No format check required as only docs or non-plugin files changed"' | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No tests required as only docs or non-plugin files changed"' |