Initialize LVGL with dark theme #42
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: "format code" | |
# run on pull requests to develop | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
# check out HEAD on the branch | |
- name: checkout code | |
uses: actions/checkout@3 | |
with: | |
ref: ${{ github.head_ref }} | |
# format the latest commit | |
- name: format code | |
uses: purduesigbots/clang-format-action@1 | |
# use one of clang-format's supported styles or leave this out to use the style in your .clang-format file | |
with: | |
style: file | |
# commit the changes | |
- name: Commit changes | |
uses: stefanzweifel/[email protected] | |
with: | |
commit_message: 🎨 apply clang-format changes | |
branch: ${{ github.head_ref }} |