commit 2456d73fdb301a3d19ce031079d7ab6fde184f0d parent 50156a6caa637897cd54528b5e5da307669a9ab6 Author: Cem Keylan <cem@ckyln.com> Date: Sat, 5 Sep 2020 12:56:25 +0300 add github workflows Diffstat:
A | .github/workflows/main.yml | | | 13 | +++++++++++++ |
1 file changed, 13 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml @@ -0,0 +1,13 @@ +name: test + +on: [push, pull_request] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Run tests. + run: make test