From 2a636a31f07d47cbb247a064bf8ec2bf9bc2bf65 Mon Sep 17 00:00:00 2001 From: Simon Legner Date: Tue, 20 Oct 2020 02:01:31 +0200 Subject: [PATCH] Enable GitHub Actions for C --- .github/workflows/c.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/c.yml diff --git a/.github/workflows/c.yml b/.github/workflows/c.yml new file mode 100644 index 0000000..215d118 --- /dev/null +++ b/.github/workflows/c.yml @@ -0,0 +1,12 @@ +name: C CI + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - run: sudo apt-get install protobuf-compiler libprotobuf-dev + - run: make -C src