Skip to content

ci: add phase2 to CI branch triggers (#24) #44

ci: add phase2 to CI branch triggers (#24)

ci: add phase2 to CI branch triggers (#24) #44

Workflow file for this run

name: CI
on:
pull_request:
branches: [master, phase2]
push:
branches: [master, phase2]
jobs:
test:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: corretto
java-version: 17
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Run tests
run: ./gradlew test