Skip to content

Commit e40ade7

Browse files
committed
Merge branch 'master' into Add-Python-File-Generator
2 parents dee02b6 + 84f0662 commit e40ade7

1 file changed

Lines changed: 11 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,26 @@ on:
1111
jobs:
1212
test:
1313
runs-on: ubuntu-latest
14-
container:
15-
image: cimg/python:3.11
16-
options: --user root
14+
timeout-minutes: 5
1715

1816
steps:
1917
- name: Checkout repository and submodules
2018
uses: actions/checkout@v4
2119
with:
2220
submodules: recursive
2321

22+
- name: Set up Python
23+
uses: actions/setup-python@v5
24+
with:
25+
python-version: "3.11"
26+
cache: "pip"
27+
2428
- name: Install system dependencies
2529
run: |
26-
apt-get update
27-
apt-get install -y pandoc ghdl gtkwave verilator python3-pip texlive-latex-extra latexmk
30+
sudo apt-get update
31+
sudo apt-get install -y \
32+
pandoc ghdl gtkwave verilator python3-pip \
33+
texlive-latex-extra latexmk
2834
2935
- name: Install Python dependencies
3036
run: pip install -e .

0 commit comments

Comments
 (0)