WIP #2
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: build | ||
on: | ||
push: | ||
pull_request: | ||
workflow_run: | ||
# Use a workflow as a trigger of scheduled builds. Forked repositories can disable scheduled builds by disabling | ||
# "scheduled" workflow, while maintaining ability to perform local CI builds. | ||
workflows: | ||
- scheduled | ||
branches: | ||
- main | ||
- test_actions | ||
types: | ||
- requested | ||
jobs: | ||
Cpp formatting check: | ||
Check failure on line 18 in .github/workflows/test.yml GitHub Actions / buildInvalid workflow file
|
||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install Dependencies | ||
run: | | ||
git submodule update --init | ||
- name: Check formatting | ||
run: | | ||
python tools/format.py |