Skip to content
This repository has been archived by the owner on Dec 24, 2024. It is now read-only.

Commit

Permalink
Add GHA CI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Kovmir committed Feb 29, 2024
1 parent 47c11b3 commit 9c33276
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: build

on:
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

defaults:
run:
shell: sh

steps:
- name: Checkout
uses: actions/checkout@latest

- name: Install dependencies
run: sudo apt install -y build-essential libbluetooth-dev

- name: Compile
run: make

0 comments on commit 9c33276

Please sign in to comment.