Skip to content

[tuner] Invoke iree-benchmark-module without calling bash scripts #52

[tuner] Invoke iree-benchmark-module without calling bash scripts

[tuner] Invoke iree-benchmark-module without calling bash scripts #52

Workflow file for this run

name: Pre-commit Checks
on:
pull_request:
paths:
- ".github/workflows/pre-commit.yml"
- ".pre-commit-config.yaml"
- "tuning/**"
permissions:
contents: read
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10.12'
- name: Install dev dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run pre-commit test
run: pre-commit run --all-files --show-diff-on-failure --color=always