ci: add a bit of Github workflows (#189)

Might as well do it, as I also just pushed first and tested later.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
pull/201/head
Alexandru Ardelean 2 years ago committed by GitHub
parent d259c9b3f9
commit 18f306045c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      .github/workflows/build.yml

@ -0,0 +1,13 @@
name: Build & run tests
on:
push:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run the 'make test'
run: make test
Loading…
Cancel
Save