Skip to content

Update dependabot.yml #10

Update dependabot.yml

Update dependabot.yml #10

Workflow file for this run

name: Checks
on:
pull_request:
branches: [ main ]
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout project sources
uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Test
run: ./gradlew test
- name: Checkstyle
run: ./gradlew check