[#21] add forgejo maven verify action #22

Merged
orikik merged 1 commit from orikik/frostfs-sdk-java:feature/forgejo-actions into master 2024-10-29 14:52:19 +00:00
2 changed files with 22 additions and 1 deletions
Showing only changes of commit 64e275713f - Show all commits

View file

@ -0,0 +1,12 @@
name: Verify code phase
on: [pull_request]
jobs:
verify-code:
name: Verify code
runs-on: docker
container: git.frostfs.info/truecloudlab/env:openjdk-11-maven-3.8.6
steps:
- uses: actions/checkout@v3
- name: Run the Maven verify phase
run: mvn --batch-mode --update-snapshots verify

11
pom.xml
View file

@ -85,7 +85,16 @@
</executions>
<version>3.4.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.22.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>