Feature: add bfloat16 support #4
This file contains hidden or 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: Check pre-commit hooks | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| env: | |
| FORCE_COLOR: "1" | |
| jobs: | |
| tests-using-pixi: | |
| timeout-minutes: 10 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install Pixi | |
| uses: prefix-dev/[email protected] | |
| with: | |
| pixi-version: "latest" | |
| run-install: false | |
| - name: Install pre-commit | |
| run: pixi global install pre-commit | |
| - name: install pre-commit hooks | |
| run: pre-commit install | |
| - name: Run pre-commit hooks | |
| run: pre-commit run --all --show-diff-on-failure |