File tree 1 file changed +14
-5
lines changed
1 file changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -63,19 +63,28 @@ jobs:
63
63
run : |
64
64
python -m pip install --upgrade pip
65
65
sudo apt-get update -y
66
- sudo apt-get install python3-pip protobuf-compiler liblzma-dev
66
+ sudo apt-get install python3-pip protobuf-compiler
67
67
cd open-simulation-interface
68
68
pip install .
69
69
cd ..
70
70
pip install .
71
71
72
- - name : Run tests
72
+ - name : Display infos
73
73
shell : bash
74
- run : python -m unittest discover tests
74
+ run : |
75
+ lzma --version
76
+ protoc --version
77
+ osivalidator --help
78
+
79
+ - name : Test lzma decompression and compression
80
+ shell : bash
81
+ run : |
82
+ lzma -d data/small_test.txt.lzma
83
+ lzma -z data/small_test.txt
75
84
76
- - name : Show usage osi-validator
85
+ - name : Run tests
77
86
shell : bash
78
- run : osivalidator -h
87
+ run : python -m unittest discover tests
79
88
80
89
- name : Generate rules
81
90
shell : bash
You can’t perform that action at this time.
0 commit comments