Bump pymisp from 2.4.197 to 2.4.198 in /src/publishers #404
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: linting | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
lint: | |
name: lint & check formatting | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.8', '3.10', '3.12'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: lint with black | |
uses: rickstaa/action-black@v1 | |
with: | |
black_args: "src --check" | |
fail_on_error: false |