Skip to content

Commit

Permalink
added git action
Browse files Browse the repository at this point in the history
  • Loading branch information
M507 committed Dec 22, 2023
1 parent 9ec6796 commit 36bd3c3
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: docker test

on:
pull_request:
push:
workflow_dispatch:
schedule:
- cron: "5 8 * * 0"

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

0 comments on commit 36bd3c3

Please sign in to comment.