Add isort check to CICD #12
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: test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- "**" | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install pipenv | |
pipenv install --dev | |
bash ./scripts/install_nats.sh | |
- name: Run isort check | |
run: pipenv run isort --check-only --diff . | |
- name: Run tests | |
run: | | |
pipenv run flake8 --ignore=W391 ./nats/js/ | |
pipenv run pytest -x -vv -s --continue-on-collection-errors | |
env: | |
PATH: $HOME/nats-server:$PATH |