Skip to content

fix/remove establishment protocol #189

fix/remove establishment protocol

fix/remove establishment protocol #189

Workflow file for this run

name: Continues Integration
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
clippy:
name: Clippy check
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: clippy
test:
name: Integration test
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: test
args: --workspace --exclude e2e
e2e:
name: E2E tests
needs: [test]
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: hoverkraft-tech/[email protected]
- uses: actions-rs/cargo@v1
with:
command: test
args: -p e2e