Dgl nagl update #66
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: 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: | | |
pip install -e . --no-build-isolation | |
- name: Install black | |
shell: bash | |
run: | | |
pip install black | |
- name: Run black | |
shell: bash | |
run: | | |
black naglmbis --check |