diff --git a/.github/workflows/sanity.yaml b/.github/workflows/sanity.yaml new file mode 100644 index 000000000..edc963f09 --- /dev/null +++ b/.github/workflows/sanity.yaml @@ -0,0 +1,16 @@ +name: Sanity Tests +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] +jobs: + test: + name: Sanity tests + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: Run tests + run: | + make sanity-test \ No newline at end of file