recognize accelerator{Type,Count} runtime attributes for GPUs (#25) #191
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: | |
lint: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: deps | |
run: sudo pip3 install --system pre-commit black flake8 pylint | |
- name: pre-commit | |
run: pre-commit run --all-files |