2021-11-06 03:57:33 +00:00
|
|
|
name: Docker-Compose Build and Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- "**.md"
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-hotspot-test:
|
|
|
|
runs-on: ubuntu-latest
|
2021-12-11 19:47:40 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
docker-compose-file:
|
|
|
|
- docker-compose.yml
|
|
|
|
- testing/docker-compose.hsqldb.yml
|
2021-11-06 03:57:33 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2.4.0
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Build Locally
|
|
|
|
run: docker build . -t 1337kavin/piped:latest
|
|
|
|
- name: Start Docker-Compose services
|
2021-12-11 19:47:40 +00:00
|
|
|
run: docker-compose -f ${{ matrix.docker-compose-file }} up -d && sleep 5
|
2021-11-06 03:57:33 +00:00
|
|
|
- name: Run tests
|
2021-12-11 19:47:40 +00:00
|
|
|
run: ./testing/api-test.sh
|