Skip to content

asg/mini-libc: Mention expected build issues when testing #106

asg/mini-libc: Mention expected build issues when testing

asg/mini-libc: Mention expected build issues when testing #106

Workflow file for this run

name: Lint Code Base
on: [push, pull_request]
jobs:
superlinter:
name: Super Linter
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
- name: Lint Code Base
uses: github/super-linter@v4
env:
# Don't check already existent files
VALIDATE_ALL_CODEBASE: false
VALIDATE_GITHUB_ACTIONS: false
VALIDATE_CLANG_FORMAT: false
VALIDATE_BASH_EXEC: false
LINTER_RULES_PATH: /.github/workflows/
MARKDOWN_CONFIG_FILE: config/config.json
MARKDOWN_CUSTOM_RULE_GLOBS: rules/rules.js
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}