Terminal emulator with all the bells and whistles
https://www.enlightenment.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
395 B
19 lines
395 B
name: coccinelle |
|
|
|
on: [push] |
|
|
|
jobs: |
|
coccinelle: |
|
runs-on: ubuntu-22.04 |
|
steps: |
|
- name: install coccinelle |
|
run: | |
|
sudo apt update |
|
sudo apt upgrade -y |
|
sudo apt install -y coccinelle |
|
- name: Checkout |
|
uses: actions/checkout@v3 |
|
with: |
|
token: ${{ github.token }} |
|
- name: coccinelle check |
|
run: scripts/coccinelle/coccicheck.sh
|
|
|