minmea/.github/workflows/c-cpp.yml
2022-05-20 21:01:37 -04:00

19 lines
292 B
YAML

name: C/C++ CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: sudo apt-get install -y clang-tools check
- name: make
run: make
- name: make test
run: make test