This repository has been archived by the owner on Feb 11, 2025. It is now read-only.
docs: add ImgBotApp as a contributor for plugin, and tool #101
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Build with Maven' | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
name: 'Build on ${{ matrix.os }}' | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: 'Checkout repository' | |
uses: actions/checkout@v4 | |
- name: 'Set up JDK 17' | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
architecture: 'x64' | |
- name: 'Build project with Maven' | |
run: mvn verify |