diff --git a/.gitea/workflows/main.yml b/.gitea/workflows/main.yml new file mode 100644 index 0000000..45f0513 --- /dev/null +++ b/.gitea/workflows/main.yml @@ -0,0 +1,13 @@ +name: Build and Test +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Build + run: make + - name: Test + run: make test