Skip to content

Merge pull request #3 from wevtoolbox/fix-typo #5

Merge pull request #3 from wevtoolbox/fix-typo

Merge pull request #3 from wevtoolbox/fix-typo #5

Workflow file for this run

---
###
### Lints all generic and json files in the whole git repository
###
name: linting
on:
pull_request:
push:
branches:
- master
tags:
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: False
matrix:
target:
- _lint-files
- _lint-version
name: "[ ${{ matrix.target }} ]"
steps:
- name: Checkout repository
uses: actions/checkout@master
- name: Lint
run: |
make ${target}
env:
target: ${{ matrix.target }}