Skip to content

Update for RPI4 and kernel 6 #20

Update for RPI4 and kernel 6

Update for RPI4 and kernel 6 #20

Workflow file for this run

---
name: 'Yamllint GitHub Actions'
on: # yamllint disable-line rule:truthy
- push
- pull_request
jobs:
yamllint:
name: 'Yamllint'
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@master
- name: "check env vars"
run: |
export | sort
env | sort
ls -la
cat "${GITHUB_EVENT_PATH}"
- name: 'Yamllint'
uses: karancode/yamllint-github-action@master
with:
yamllint_file_or_dir: '.'
yamllint_strict: false
yamllint_comment: true
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}