Skip to content

chore(deps-dev): bump org.junit.jupiter:junit-jupiter-engine from 5.10.0 to 5.10.1 #88

chore(deps-dev): bump org.junit.jupiter:junit-jupiter-engine from 5.10.0 to 5.10.1

chore(deps-dev): bump org.junit.jupiter:junit-jupiter-engine from 5.10.0 to 5.10.1 #88

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Test PR & features
on:
pull_request:
push:
branches-ignore: [main, develop]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: 8
distribution: 'temurin'
cache: 'maven'
- name: 🧪 Test with Maven
run: mvn -B verify
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}