feat: 0.4.2 #51
This file contains hidden or 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: Development Build | |
| on: | |
| push: | |
| branches: [ Development ] | |
| pull_request: | |
| branches: [ Development ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Create mongo Docker container | |
| id: build_mongo_docker | |
| uses: DigiPie/mongo-action@v2.0.1 | |
| with: | |
| image_version: latest | |
| port: 27017 | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| ref: Development | |
| - name: Set up JDK 25 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '25' | |
| - name: Cache Maven repository | |
| uses: actions/cache@v4 | |
| with: | |
| path: .m2/repository # maven repository files are stored here | |
| key: ${{ runner.OS }}-maven-${{ hashFiles('pom.xml') }} | |
| - name: Build with Maven | |
| run: mvn -B package --file pom.xml |