From 772ce5838210c957d88c8eeab01c6003567dd1e5 Mon Sep 17 00:00:00 2001 From: Daniel Collin Date: Fri, 2 Feb 2024 14:31:55 +0100 Subject: [PATCH] Create ci.yml Added start of CI --- .github/workflows/ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 000000000..b89a452cd --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,19 @@ +name: C/C++ CI + +on: + push: + branches: [ "master", "dev" ] + pull_request: + branches: [ "master", "dev" ] + +jobs: + linux_matrix: + strategy: + matrix: + os: [ubuntu-22.04, ubuntu-20.04] + version: [10, 12, 14] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v3 + - name: make + run: make