mirror of
https://github.com/TeamPiped/Piped-Backend
synced 2025-09-03 20:11:20 +02:00

* add dependecies for h2 db * Attempt to test h2 with docker-compose. * bump h2 to 2.0.202 * add dependecies for h2 db * use pgsql mode * switch to hsqldb * fix hibernate dialect Co-authored-by: FireMaskterK <20838718+FireMasterK@users.noreply.github.com>
27 lines
644 B
YAML
27 lines
644 B
YAML
name: Docker-Compose Build and Test
|
|
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- "**.md"
|
|
pull_request:
|
|
|
|
jobs:
|
|
build-hotspot-test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
docker-compose-file:
|
|
- docker-compose.yml
|
|
- testing/docker-compose.hsqldb.yml
|
|
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
|
|
run: docker-compose -f ${{ matrix.docker-compose-file }} up -d && sleep 5
|
|
- name: Run tests
|
|
run: ./testing/api-test.sh
|