Skip to content

Commit

Permalink
added initial set of files
Browse files Browse the repository at this point in the history
  • Loading branch information
lyrixx committed Mar 15, 2024
0 parents commit f185b8a
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: CI

"on":
push:
branches:
- main
pull_request:
branches:
- main

jobs:
ansi:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- run: |
set -ex
docker compose up -d
docker compose stop -d
no-ansi:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- run: |
set -ex
docker compose --ansi=never up -d
docker compose --ansi=never stop -d
13 changes: 13 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: "3.7"

services:
s1:
image: hello-world
s2:
image: hello-world
s3:
image: hello-world
s4:
image: hello-world
s5:
image: hello-world

0 comments on commit f185b8a

Please sign in to comment.