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.
23 lines
510 B
23 lines
510 B
3 years ago
|
name: lint
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [main, develop]
|
||
|
pull_request:
|
||
|
types: [opened, synchronize]
|
||
|
|
||
|
jobs:
|
||
|
selene:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Setup selene
|
||
|
run: |
|
||
|
curl -LO https://github.com/Kampfkarren/selene/releases/download/0.12.1/selene-0.12.1-linux.zip
|
||
|
unzip selene-0.12.1-linux.zip
|
||
|
rm selene-0.12.1-linux.zip && chmod +x selene
|
||
|
- name: Lint doom source
|
||
|
run: |
|
||
|
./selene .
|
||
|
|