From 8746c7320afb775e7a12ed9f525c77fce8ea7a02 Mon Sep 17 00:00:00 2001 From: Stiopa Koltsov Date: Sat, 16 Jan 2021 10:46:01 +0000 Subject: [PATCH] Add GitHub Actions CI Ubuntu job for starters --- .github/workflows/ci-ubuntu.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/ci-ubuntu.yml diff --git a/.github/workflows/ci-ubuntu.yml b/.github/workflows/ci-ubuntu.yml new file mode 100644 index 00000000..66724508 --- /dev/null +++ b/.github/workflows/ci-ubuntu.yml @@ -0,0 +1,20 @@ +name: Ubuntu +on: + push: + branches: + - '*' + tags: + - '*' + pull_request: + branches: + - master + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Build + run: make + shell: bash