mirror of
https://github.com/hoverkraft-tech/compose-action.git
synced 2026-01-11 15:13:06 +08:00
19 lines
423 B
YAML
19 lines
423 B
YAML
on: [push]
|
|
|
|
jobs:
|
|
test-compose-action:
|
|
runs-on: ubuntu-latest
|
|
name: test compose action
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: ./
|
|
with:
|
|
compose-file: "./docker/docker-compose.yml"
|
|
down-flags: "--volumes"
|
|
- uses: ./
|
|
with:
|
|
compose-file: "./docker/docker-compose.yml"
|
|
services:
|
|
- "helloworld2"
|
|
- "helloworld3"
|