We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dee02b6 + 84f0662 commit e40ade7Copy full SHA for e40ade7
1 file changed
.github/workflows/ci.yml
@@ -11,20 +11,26 @@ on:
11
jobs:
12
test:
13
runs-on: ubuntu-latest
14
- container:
15
- image: cimg/python:3.11
16
- options: --user root
+ timeout-minutes: 5
17
18
steps:
19
- name: Checkout repository and submodules
20
uses: actions/checkout@v4
21
with:
22
submodules: recursive
23
+ - name: Set up Python
+ uses: actions/setup-python@v5
24
+ with:
25
+ python-version: "3.11"
26
+ cache: "pip"
27
+
28
- name: Install system dependencies
29
run: |
- apt-get update
- 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
34
35
- name: Install Python dependencies
36
run: pip install -e .
0 commit comments