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 1010 steps :
1111 - uses : actions/checkout@v4
1212
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+
1327 - name : Run EEPROM Config Tests
1428 run : |
1529 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