Skip to content

github: update action version for build-pdf #194

github: update action version for build-pdf

github: update action version for build-pdf #194

Workflow file for this run

name: rvv-intrinsic-generator
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Prerequisites
run: |
sudo apt-get install clang-format
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r rvv-intrinsic-generator/requirements.txt
pylint --version
- name: Run yapf
run: |
make -C rvv-intrinsic-generator yapf-check
- name: Lint
run: |
make -C rvv-intrinsic-generator lint
- name: Type check
run: |
make -C rvv-intrinsic-generator type-check
- name: Check golden
run: |
make -C rvv-intrinsic-generator diff-autogen