Skip to content

Clone full tree-sitter repos(s) #94

Clone full tree-sitter repos(s)

Clone full tree-sitter repos(s) #94

Workflow file for this run

name: Static analysis
on: [push]
jobs:
cppcheck:
name: Cppcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install cpp-check
run: sudo apt-get install -y cppcheck
- name: run cpp-check
run: cppcheck src/
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install shellcheck
run: sudo apt-get install -y shellcheck
- name: run shell-check
run: shellcheck *.sh -e SC1090