Bumping version to 1.8.0 #180
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: Run tests | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| # Including "ubuntu2204" in the version is a temporary fix to the direct download URL while we transition | |
| # between 4 and 6 | |
| mongodb-version: [4.0.18, ubuntu2204-6.0.6] | |
| java-version: [1.8] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup Java JDK | |
| uses: actions/[email protected] | |
| # The Java version to make available on the path. Takes a whole or semver Java version, or 1.x syntax (e.g. 1.8 => Java 8.x). Early access versions can be specified in the form of e.g. 14-ea, 14.0.0-ea, or 14.0.0-ea.28 | |
| with: | |
| java-version: ${{ matrix.java-version }} | |
| - name: Install and Start MongoDB | |
| run: | | |
| wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-${{ matrix.mongodb-version }}.tgz | |
| tar xfz mongodb-linux-x86_64-${{ matrix.mongodb-version }}.tgz | |
| export PATH=`pwd`/mongodb-linux-x86_64-${{ matrix.mongodb-version }}/bin:$PATH | |
| mkdir -p data/db | |
| mongod --dbpath=data/db & | |
| mongod --version | |
| - name: Run Maven tests | |
| run: | | |
| mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -PGithubActions | |
| mvn test -s .github/workflows/.ci.settings.xml -PGithubActions |