mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2024-08-14 23:51:41 +00:00
42550d3a3c
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.4.0 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2.4.0...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
32 lines
928 B
YAML
32 lines
928 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
|
|
- testing/docker-compose.cockroachdb.yml
|
|
- testing/docker-compose.yugabytedb.yml
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Create Version File
|
|
run: echo $(git log -1 --date=short --pretty=format:%cd)-$(git rev-parse --short HEAD) > VERSION
|
|
- name: Build Locally
|
|
uses: docker/build-push-action@v2.9.0
|
|
with:
|
|
context: .
|
|
load: true
|
|
tags: 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
|