From 63e69a8735d44f4206dbd32a7b4eb8312908f11e Mon Sep 17 00:00:00 2001 From: Eric Jiang <321497+erjiang@users.noreply.github.com> Date: Sat, 14 Jun 2025 10:49:02 -0700 Subject: [PATCH] Add CI workflow for build --- .github/workflows/build.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..a2d21d8 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,17 @@ +name: Build + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Install dependencies + run: sudo apt-get update && sudo apt-get install -y build-essential libusb-1.0-0-dev + - name: Build + run: make