Skip to content

Fix linter and add CD pipeline #2

Fix linter and add CD pipeline

Fix linter and add CD pipeline #2

Workflow file for this run

---
name: Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
container:
image: urnai/linter:latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- run: git config --global --add safe.directory $GITHUB_WORKSPACE
- run: lint-commit origin/main
- run: lint-markdown
- run: lint-dockerfile
- run: lint-yaml
- run: lint-shell-script