Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,26 @@ on:
jobs:
test:
runs-on: ubuntu-latest
container:
image: cimg/python:3.11
options: --user root
timeout-minutes: 5

steps:
- name: Checkout repository and submodules
uses: actions/checkout@v4
with:
submodules: recursive

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"

- name: Install system dependencies
run: |
apt-get update
apt-get install -y pandoc ghdl gtkwave verilator python3-pip texlive-latex-extra latexmk
sudo apt-get update
sudo apt-get install -y \
pandoc ghdl gtkwave verilator python3-pip \
texlive-latex-extra latexmk

- name: Install Python dependencies
run: pip install -e .
Expand Down