Added triton interop support #31
Workflow file for this run
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: "AutoTest" | |
| on: | |
| workflow_dispatch: # can trigger manually | |
| pull_request: # can trigger on pull requests | |
| push: # can trigger on pushes | |
| branches: | |
| - main | |
| jobs: | |
| autotest: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/huawei-cpllab/pydsl-ci:latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Editable install | |
| shell: bash | |
| run: pip install -e . | |
| - name: Run hatch test | |
| shell: bash | |
| run: hatch test | |
| - name: Code Formatting check | |
| shell: bash | |
| run: hatch fmt -f --check |