File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7070 - name : Run tests
7171 run : |
7272 env PATH="${PATH}:${HOME}/.poetry/bin" poetry run tox
73+
74+ tests-binary :
75+ name : Run binary tests
76+ strategy :
77+ matrix :
78+ os : [ubuntu-latest]
79+ runs-on : ${{ matrix.os }}
80+ steps :
81+ - name : Checkout code
82+ uses : actions/checkout@master
83+
84+ - name : Install stable toolchain
85+ uses : actions-rs/toolchain@v1
86+ with :
87+ profile : minimal
88+ toolchain : nightly
89+ override : true
90+
91+ - name : Install test binary
92+ uses : actions-rs/cargo@v1
93+ with :
94+ command : install
95+ args : --version 6.1.0 streamson-bin --bin streamson-bin-test --features test
96+
97+ - name : Setup python
98+ uses : actions/setup-python@v2
99+ with :
100+ python-version : " 3.8.x"
101+
102+ - name : Install streamson from python package
103+ run : pip install .
104+
105+ - name : Run binary test
106+ run : streamson-bin-test streamson
You can’t perform that action at this time.
0 commit comments