diff options
author | merakor <cem@ckyln.com> | 2020-09-05 09:56:24 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2020-09-05 09:56:24 +0000 |
commit | 5a8e54aa3bf06088339e8d486f1cd187428db9a0 (patch) | |
tree | 900678feb719b77a3a1c57cbfd37c2bdcb45f434 | |
parent | c561bde028d35fee7911ed6857d3a65cfa4b5088 (diff) | |
download | cpt-5a8e54aa3bf06088339e8d486f1cd187428db9a0.tar.gz |
add github workflows
FossilOrigin-Name: abe4dcaf8d12a47ec59ee2b5faec3bae9a61462d4e30fb641b5e2e05e192152c
-rw-r--r-- | .github/workflows/main.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..836d891 --- /dev/null +++ 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 |