Add missing enum for Opra #431
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| tshark-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Update Operating System | |
| run: sudo apt-get update | |
| - name: Install tshark | |
| run: sudo apt-get install -y tshark | |
| - name: Set Environment Variables | |
| run: export PATH=/usr/local/bin:$PATH | |
| - name: Clone Omi Data | |
| run: git clone --depth=1 https://github.com/Open-Markets-Initiative/Data.git | |
| - name: Run B3 Equities BinaryEntryPoint Sbe 8.0 Dissector Tests | |
| run: bash -x .github/tests/B3-Equities-BinaryEntryPoint-Sbe-v8-0-Test.sh | |
| - name: Run B3 Equities BinaryEntryPoint Sbe 8.1 Dissector Tests | |
| run: bash -x .github/tests/B3-Equities-BinaryEntryPoint-Sbe-v8-1-Test.sh | |
| - name: Run B3 Equities BinaryUmdf Sbe 1.8 Dissector Tests | |
| run: bash -x .github/tests/B3-Equities-BinaryUmdf-Sbe-v1-8-Test.sh | |
| - name: Run Coinbase Derivatives MarketDataApi Sbe 1.2 Dissector Tests | |
| run: bash -x .github/tests/Coinbase-Derivatives-MarketDataApi-Sbe-v1-2-Test.sh | |
| - name: Run Cme Futures Mdp3 Sbe 1.9 Dissector Tests | |
| run: bash -x .github/tests/Cme-Futures-Mdp3-Sbe-v1-9-Test.sh | |
| - name: Run Eurex Derivatives Eti T7 10.0 Dissector Tests | |
| run: bash -x .github/tests/Eurex-Derivatives-Eti-T7-v10-0-Test.sh | |
| - name: Run Iex Equities Deep IexTp 1.0.8 Dissector Tests | |
| run: bash -x .github/tests/Iex-Equities-Deep-IexTp-v1-0-8-Test.sh | |
| - name: Run Iex Equities Tops IexTp 1.5.6 Dissector Tests | |
| run: bash -x .github/tests/Iex-Equities-Tops-IexTp-v1-5-6-Test.sh | |
| - name: Run Iex Equities Tops IexTp 1.6.6 Dissector Tests | |
| run: bash -x .github/tests/Iex-Equities-Tops-IexTp-v1-6-6-Test.sh | |
| - name: Run Imperative IntelligentCross Mdf 1.11 Dissector Tests | |
| run: bash -x .github/tests/Imperative-IntelligentCross-Mdf-v1-11-Test.sh | |
| - name: Run Memx Equities MemoirDepthFeed Sbe 1.3 Dissector Tests | |
| run: bash -x .github/tests/Memx-Equities-MemoirDepthFeed-Sbe-v1-3-Test.sh | |
| - name: Run Nasdaq NsmEquities TotalView Itch 5.0 Dissector Tests | |
| run: bash -x .github/tests/Nasdaq-NsmEquities-TotalView-Itch-v5-0-Test.sh | |
| - name: Run Nasdaq IseOptions OrderComboFeed Itch 1.1 Dissector Tests | |
| run: bash -x .github/tests/Nasdaq-IseOptions-OrderComboFeed-Itch-v1-1-Test.sh | |
| - name: Run Nyse Equities OpenBook Ultra 2.1.b Dissector Tests | |
| run: bash -x .github/tests/Nyse-Equities-OpenBook-Ultra-v2-1-b-Test.sh | |
| - name: Run Siac Opra Recipient Obi 6.2 Dissector Tests | |
| run: bash -x .github/tests/Siac-Opra-Recipient-Obi-v6-2-Test.sh | |
| - name: Run Siac Cts Output Cta 2.9 Dissector Tests | |
| run: bash -x .github/tests/Siac-Cts-Output-Cta-v2-9-Test.sh | |
| - name: Run Siac Cts Output Cta 2.10 Dissector Tests | |
| run: bash -x .github/tests/Siac-Cts-Output-Cta-v2-10-Test.sh | |
| - name: Run Tmx Mx Sola Multicast Hsvf 1.14 Dissector Tests | |
| run: bash -x .github/tests/Tmx-Mx-Sola-Multicast-Hsvf-v1-14-Test.sh | |
| - name: Run Tmx QuantumFeed TsxTsxvLevel2 Xmt 2.1 Dissector Tests | |
| run: bash -x .github/tests/Tmx-QuantumFeed-TsxTsxvLevel2-Xmt-v2-1-Test.sh | |