Skip to content

Add code that break lint #31

Add code that break lint

Add code that break lint #31

Workflow file for this run

---
name: Lint
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v2
- uses: docker/build-push-action@v4
with:
context: .
file: ".docker/lint/c-lint.Dockerfile"
tags: c-lint:latest
load: true
cache-from: type=gha
cache-to: type=gha,mode=max
push: false
- name: Run C lint
uses: addnab/docker-run-action@v3
with:
image: c-lint:latest
options: -v ${{ github.workspace }}:/code -e LINT_FIX=1