Skip to content

Update pylint.yml actions version #17

Update pylint.yml actions version

Update pylint.yml actions version #17

Workflow file for this run

name: TestUbuntuLatest
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- name: install verilator
run: |
sudo apt install verilator
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install extra dependencies
run: |
pip install -r requirements_extra.txt
- name: pip configuration report
run: |
pip list
- name: test
run: |
cd ./src/cheap_pie
python ./cheap_pie_core/test.py