Skip to content

Improved the .gitignore! #3

Improved the .gitignore!

Improved the .gitignore! #3

Workflow file for this run

name: Java CI with Maven
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
cache: maven
- name: Build with Maven
run: mvn clean install
- name: Run tests
run: mvn test -T 2
- name: Code vulnerability scanning
uses: anchore/scan-action@v3
id: scan
with:
path: "${{ github.workspace }}"
fail-build: false