Skip to content

fix pip install command #63

fix pip install command

fix pip install command #63

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11]
steps:
- uses: actions/checkout@v2
- name: Python Setup
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Create Environment
shell: bash
run: |
python -m pip install --upgrade pip
pip install -e . --no-build-isolation
- name: Install black
shell: bash
run: |
pip install black
- name: Run black
shell: bash
run: |
black naglmbis --check