Merge pull request #2 from wevtoolbox/update-name #3
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
--- | |
### | |
### Code style | |
### | |
name: pycode | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
tags: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: False | |
matrix: | |
target: | |
- pycodestyle | |
name: "[ ${{ matrix.target }} ]" | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@master | |
- name: "${{ matrix.target }}" | |
run: | | |
make _code-${{ matrix.target }} |