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