From 0ec7fa2f6ddb26e1e1171057e58d43a187449ad6 Mon Sep 17 00:00:00 2001 From: Herby Gillot Date: Sat, 20 Jan 2024 21:13:50 -0500 Subject: [PATCH] misc: add configuration to run CI using Github Actions --- .github/workflows/ci.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..43f2547 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,16 @@ +--- +name: "CI" + +on: [push, pull_request] + +jobs: + ci: + runs-on: "ubuntu-latest" + + steps: + + - name: Checkout Source + uses: actions/checkout@v4 + + - name: Build + run: "make clean && make"