diff --git a/.github/workflows/devcontainer.yml b/.github/workflows/devcontainer.yml new file mode 100644 index 000000000..f45bd7e24 --- /dev/null +++ b/.github/workflows/devcontainer.yml @@ -0,0 +1,21 @@ +name: 'build' +on: # rebuild any PRs and main branch changes + pull_request: + push: + branches: + - main + - benchmarking + +jobs: + build: + runs-on: ubuntu-latest + steps: + + - name: Checkout (GitHub) + uses: actions/checkout@v3 + + - name: Build and run dev container task + uses: devcontainers/ci@v0.3 + with: + # Change this to be your CI task/script + runCmd: mvn --batch-mode --update-snapshots test \ No newline at end of file