Skip to content

fix(deps): bump org.apache.maven.plugins:maven-surefire-plugin from 3.1.2 to 3.2.3 #96

fix(deps): bump org.apache.maven.plugins:maven-surefire-plugin from 3.1.2 to 3.2.3

fix(deps): bump org.apache.maven.plugins:maven-surefire-plugin from 3.1.2 to 3.2.3 #96

# 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 }}