Skip to content

Commit 20fc7c5

Browse files
committed
gha: test docker compose up
1 parent cd40fab commit 20fc7c5

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/lint.yml

+12
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ permissions: # added using https://github.com/step-security/secure-workflows
66
contents: read
77

88
jobs:
9+
docker:
10+
timeout-minutes: 10
11+
name: Test docker compose up
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
15+
uses: actions/checkout@v3
16+
- name: Start containers
17+
run: docker-compose -f "docker-compose.yml" up -d --build
18+
- name: Stop containers
19+
if: always()
20+
run: docker-compose -f "docker-compose.yml" down
921
markdown-link-check:
1022
name: Check for broken links in Markdown files
1123
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)