Fixed bug where bfloat16 datatype wasn't handled correctly when conve… #48
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: | |
branches: [ main ] | |
concurrency: | |
group: "${{ github.head_ref || github.ref }}-lint-and-test" | |
cancel-in-progress: true | |
jobs: | |
# flake8: | |
# runs-on: ubuntu-latest | |
# container: python:3.8.5-slim-buster | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - run: pip install flake8 | |
# - run: flake8 . --show-source | |
black: | |
runs-on: ubuntu-latest | |
container: python:3.9-slim | |
steps: | |
- uses: actions/checkout@v2 | |
- run: pip install black | |
- run: black --check . |