diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 000000000..f94acad3d --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,15 @@ +# Minimal workflow to get in the GitHub system so can implement CI later + +name: CI + +on: + pull_request: + branches: [ $default-branch ] + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: checkout + uses: actions/checkout@v2