Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
doublebyte1 authored Dec 19, 2024
1 parent da3d9de commit f9e0227
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Test

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
docker:
timeout-minutes: 10
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v1

- name: Start containers
run: docker-compose -f "docker-compose.yml" up -d --build

- name: Stop containers
if: always()
run: docker-compose -f "docker-compose.yml" down

0 comments on commit f9e0227

Please sign in to comment.