diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index db1bdcf..8e837df 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -69,6 +69,33 @@ jobs: - name: Test async-std-runtime run: cargo test --features async-std-runtime + autobahn: + name: Autobahn tests + runs-on: ubuntu-latest + + strategy: + matrix: + rust: + - stable + - beta + - nightly + + steps: + - name: Checkout sources + uses: actions/checkout@v2 + + - name: Install toolchain + uses: actions-rs/toolchain@v1 + with: + toolchain: ${{ matrix.rust }} + profile: minimal + override: true + + - name: Install dependencies + run: | + sudo apt-get install python-unittest2 + sudo pip install urllib3[secure] autobahntestsuite + - name: Running Autobahn TestSuite for client run: ./scripts/autobahn-client.sh