Skip to content

Commit dceb8dd

Browse files
committed
Testing compression
1 parent d2b06c0 commit dceb8dd

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

.github/workflows/ci.yml

+14-5
Original file line numberDiff line numberDiff line change
@@ -63,19 +63,28 @@ jobs:
6363
run: |
6464
python -m pip install --upgrade pip
6565
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
6767
cd open-simulation-interface
6868
pip install .
6969
cd ..
7070
pip install .
7171
72-
- name: Run tests
72+
- name: Display infos
7373
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
7584
76-
- name: Show usage osi-validator
85+
- name: Run tests
7786
shell: bash
78-
run: osivalidator -h
87+
run: python -m unittest discover tests
7988

8089
- name: Generate rules
8190
shell: bash

0 commit comments

Comments
 (0)