moved test_json_parse from test_config to test_variables #8
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: License Check | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Install license-header-checker | |
run: curl -s https://raw.githubusercontent.com/lluissm/license-header-checker/master/install.sh | bash | |
- name: Run license check | |
run: ./bin/license-header-checker -a -r -i git,.github,.pio ./util/license_header.txt . h cpp && [[ -z `git status -s` ]] |