Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.2 to 3.2.5 #1237
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: Maven Package | |
on: | |
push: | |
pull_request: | |
jobs: | |
build-linux: | |
runs-on: self-hosted | |
environment: Main | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build with Maven | |
run: | | |
mvn -B test --file pom.xml | |
- name: Codecov | |
uses: codecov/[email protected] | |
with: | |
os: aarch64 | |
package-linux: | |
runs-on: self-hosted | |
environment: Main | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build with Maven | |
run: | | |
mvn -B package -DskipTests --file pom.xml | |
- name: Upload a Build Artifact | |
uses: actions/[email protected] | |
with: | |
name: kamilalisp-0.3.jar | |
path: target/kamilalisp-0.3.jar |