Optional support for bitcode, symbol prefixing, and cmodule. #152
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: Style | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
check_style: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v4 | |
- name: Find changed lines | |
id: changed_lines | |
uses: hestonhoffman/changed-lines@v1 | |
- name: Verify changed lines | |
run: | | |
cat << EOF > /tmp/changed-lines.json | |
${{ steps.changed_lines.outputs.changed_lines }} | |
EOF | |
./tests/stylecheck.py /tmp/changed-lines.json |