Idris2/.github/workflows/ci-lint.yml

21 lines
322 B
YAML
Raw Normal View History

2021-01-16 10:13:33 +03:00
name: Lint the sources
on:
push:
branches:
- '*'
tags:
- '*'
pull_request:
branches:
- main
2021-01-16 10:13:33 +03:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Lint the sources
run: python3 lint/lint.py
shell: bash