Skip to content

Adds github actions for lint, test, and release workflows #6

Adds github actions for lint, test, and release workflows

Adds github actions for lint, test, and release workflows #6

Workflow file for this run

name: Run lint and static analyis checks
on:
pull_request:
concurrency:
group: lint-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Clone this git repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Install lint dependencies
run: make lint/install
- name: Run lint checks
run: make -o docs/lint lint