[maven-release-plugin] prepare release imeji-4.10.10 #59
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 and test | |
on: [push, workflow_dispatch] | |
jobs: | |
buid_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Download maven dependencies | |
run: mvn dependency:resolve | |
- name: Run the Maven build | |
run: mvn clean package -P env-testing | |