Skip to content

workflows

workflows #5

Workflow file for this run

name: Static analysis
on:
push:
pull_request:
jobs:
yaml:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- run: pip3 install pykwalify
- run: pykwalify --data-file games.yaml --schema-file schema.yaml
- uses: ibiqlik/action-yamllint@v3
with:
config_file: .yamllint.yaml
spelling:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- run: pip3 install codespell
- run: codespell --check-filenames --ignore-words .codespellignore games.yaml