[WIP] Source/microphone directivity for ray tracing #283
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: | |
# Trigger the workflow on push or pull request, | |
# but only for the main branch | |
push: | |
branches: | |
- main | |
- master | |
- pypi-release | |
pull_request: | |
branches: | |
- main | |
- master | |
- pypi-release | |
jobs: | |
run-linters: | |
name: Run linters | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install Python dependencies | |
run: pip install black flake8 isort | |
- name: Run linters | |
uses: wearerequired/lint-action@v2 | |
with: | |
black: true | |
black_args: "--check" | |
flake8: false | |
- name: Sort imports | |
uses: isort/[email protected] | |
with: | |
configuration: --check-only --diff --profile black |