Merge pull request #3 from solution-libre/dependabot/github_actions/a… #46
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
check-docker-compose-syntax: | |
runs-on: ubuntu-latest | |
container: | |
image: docker:latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check Docker Compose file syntax | |
run: docker compose --env-file .env.dist config -q | |
check-markdown-syntax: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Lint Markdown | |
uses: articulate/actions-markdownlint@v1 | |
with: | |
files: '**/*.md' |