Skip to content

gha: fix builds and add lint #2

gha: fix builds and add lint

gha: fix builds and add lint #2

Workflow file for this run

name: Build and Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '17'
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: Build with Gradle
run: ./gradlew build --no-daemon
working-directory: 'pitmutationmate'
- name: Run Tests
run: ./gradlew test --no-daemon
working-directory: 'pitmutationmate'