Skip to content

new(ci): run update-kernels daily. #77

new(ci): run update-kernels daily.

new(ci): run update-kernels daily. #77

Workflow file for this run

---
name: Lint
on:
pull_request:
branches:
- main
jobs:
lint:
name: Lints and Scans
runs-on: ubuntu-latest
steps:
- name: Checkout repo ⤵️
uses: actions/checkout@v3
- name: Lint Dockerfile
uses: hadolint/[email protected]
with:
dockerfile: docker/Dockerfile
ignore: DL3008
- name: Lint kernel-crawler
uses: cclauss/[email protected]
with:
args: "pip install -r requirements.txt ; pylint kernel_crawler"
continue-on-error: true # allow failure for now
- name: Lint YAML
uses: karancode/[email protected]
with:
yamllint_file_or_dir: '.github/workflows/'
yamllint_strict: false
yamllint_comment: false
yamllint_config_filepath: .yamllint