Bump pciids from 4756a2f
to b7b0382
#66
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
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
name: Platform agnostic code checks | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install cppcheck | |
run: sudo apt-get install -y cppcheck | |
- name: Check formatting | |
run: ./helper --dry-run --agnostic format | |
- name: Lint code | |
run: ./helper --dry-run --agnostic lint |