[CLIENT-3033] Add CI/CD workflow that tests proxy client against a proxy server build from JFrog #267
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: Aerospike Java Client Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout client | |
uses: actions/checkout@v2 | |
- name: Setup Aerospike Database | |
uses: reugn/github-action-aerospike@v1 | |
- run: mvn install | |
- run: cd test | |
- run: mvn test -DskipTests=false |