From 03d55ed7fd10806084b05bd09e3b86818e565eba Mon Sep 17 00:00:00 2001 From: Keith Alcock Date: Mon, 15 Jul 2024 15:58:30 -0700 Subject: [PATCH] Create ci.yml --- .github/workflows/ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 000000000..3c1f8585c --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,20 @@ +name: Processors CI + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Run tests + run: sbt test