diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 000000000..04fd5bb75 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,23 @@ +name: CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Set up JDK 21 + uses: actions/setup-java@v4 + with: + java-version: '21' + distribution: 'temurin' + cache: maven + - name: Build with Maven + run: mvn -B package --file pom.xml diff --git a/.github/workflows/needs_triage.yml b/.github/workflows/needs_triage.yml deleted file mode 100644 index c7cc38e94..000000000 --- a/.github/workflows/needs_triage.yml +++ /dev/null @@ -1,14 +0,0 @@ -name: label-needs-triage -on: - issues: - types: [opened, reopened] - pull_request: - types: [opened, reopened] -jobs: - set-label-needs-triage: - runs-on: ubuntu-latest - steps: - - uses: actions-ecosystem/action-add-labels@v1 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - labels: needs triage