30 lines
1.0 KiB
YAML
30 lines
1.0 KiB
YAML
|
name: Java SDK test
|
||
|
on: [workflow_call]
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
with:
|
||
|
fetch-depth: 0
|
||
|
- name: Set up Python ${{ matrix.python-version }}
|
||
|
uses: actions/setup-python@v4
|
||
|
with:
|
||
|
python-version: "3.8"
|
||
|
- name: Start MotoServer
|
||
|
run: |
|
||
|
pip install build
|
||
|
python -m build
|
||
|
docker run --rm -t --name motoserver -e TEST_SERVER_MODE=true -e AWS_SECRET_ACCESS_KEY=server_secret -e AWS_ACCESS_KEY_ID=server_key -v `pwd`:/moto -p 5000:5000 -v /var/run/docker.sock:/var/run/docker.sock python:3.7-buster /moto/scripts/ci_moto_server.sh &
|
||
|
python scripts/ci_wait_for_server.py
|
||
|
- uses: actions/setup-java@v3
|
||
|
with:
|
||
|
distribution: 'temurin'
|
||
|
java-version: '17'
|
||
|
cache: 'maven'
|
||
|
- name: Build with Maven
|
||
|
run: |
|
||
|
mkdir ~/.aws && touch ~/.aws/credentials && echo -e "[default]\naws_access_key_id = test\naws_secret_access_key = test" > ~/.aws/credentials
|
||
|
cd other_langs/tests_java && mvn test
|