|
|
@ -69,6 +69,33 @@ jobs: |
|
|
|
- name: Test async-std-runtime |
|
|
|
- name: Test async-std-runtime |
|
|
|
run: cargo test --features 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 |
|
|
|
- name: Running Autobahn TestSuite for client |
|
|
|
run: ./scripts/autobahn-client.sh |
|
|
|
run: ./scripts/autobahn-client.sh |
|
|
|
|
|
|
|
|
|
|
|