Skip to content

Revert "Fix not operator" #250

Revert "Fix not operator"

Revert "Fix not operator" #250

Workflow file for this run

name: Java CI with Maven
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 21
uses: actions/setup-java@v2
with:
java-version: "21"
distribution: "adopt"
- name: Build with Maven
run: mvn package
- name: Verify build
run: mvn verify