diff --git a/.github/workflows/testcode.yml b/.github/workflows/testcode.yml new file mode 100644 index 00000000..79aed23b --- /dev/null +++ b/.github/workflows/testcode.yml @@ -0,0 +1,23 @@ +name: Run Tests on Pull Request + +on: + pull_request: + branches: + - Weekly + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Set up JDK + uses: actions/setup-java@v2 + with: + java-version: '21' + distribution: 'temurin' + + - name: Run Tests + run: ./gradlew test