Add suitesparse finder file [OC-310] #255
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
tags: | |
- "*" | |
pull_request: | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup | |
run: pip install trim cmakelang | |
- name: Check whitespace | |
run: | | |
trim *.cmake | |
git diff --exit-code | |
- name: Lint cmake files | |
run: | | |
cmake-lint *.cmake |