Skip to content

Added triton interop support #31

Added triton interop support

Added triton interop support #31

Workflow file for this run

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