File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 10
10
steps :
11
11
- uses : actions/checkout@v4
12
12
13
+ - name : Set up Python
14
+ uses : actions/setup-python@v4
15
+ with :
16
+ python-version : ' 3.x'
17
+
18
+ - name : Create and activate virtual environment
19
+ run : |
20
+ python -m venv venv
21
+ source venv/bin/activate
22
+
23
+ - name : Install dependencies
24
+ run : |
25
+ pip install pycryptodomex
26
+
13
27
- name : Run EEPROM Config Tests
14
28
run : |
15
29
cd test
Original file line number Diff line number Diff line change
1
+ # rpi-eeprom - unit tests
2
+
3
+ ## test-rpi-eeprom-config
4
+ Unit test for rpi-eeprom-config which verifies:
5
+
6
+ * rpi-eeprom-config is compatible with all EEPROM binaries
7
+ * unit tests for modifying the boot.conf file
8
+ * simple code signing test
9
+
10
+ To run on Linux:
11
+ ```
12
+ cd test
13
+ ./test-rpi-eeprom-config
14
+ ```
You can’t perform that action at this time.
0 commit comments