Skip to content

feat: Restructure docker-compose files & Removed b5 run tasks #275

feat: Restructure docker-compose files & Removed b5 run tasks

feat: Restructure docker-compose files & Removed b5 run tasks #275

Workflow file for this run

name: linter
on: pull_request
jobs:
linter:
name: Lint project files
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
# Execute the markdown linter
- name: Run the markdown linter
uses: addnab/docker-run-action@v3
with:
image: peterdavehello/markdownlint:0.32.2
options: -v ${{ github.workspace }}:/md
run: |
markdownlint .
# Execute the python linter (executes even if the previous step failed)
- name: Run the python linter
if: always()
uses: addnab/docker-run-action@v3
with:
image: alpine/flake8
options: -v ${{ github.workspace }}:/apps
run: |
flake8 code