Ensure Model ID is unique #82
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: check | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install required libraries | |
run: > | |
sudo apt-get update && sudo apt-get install -y | |
python3 python3-pip python3-setuptools python3-wheel ninja-build meson | |
cmake make build-essential clang-tidy | |
libpam0g-dev libinih-dev libevdev-dev | |
python3-dev libopencv-dev | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: | | |
meson setup build howdy/src/pam | |
ninja -C build | |
- name: Check source code | |
run: | | |
ninja clang-tidy -C build |