Skip to content

Add support for BackNth operations from Nodes #215

Add support for BackNth operations from Nodes

Add support for BackNth operations from Nodes #215

Workflow file for this run

name: CI
on:
push:
branches: [ main, ci ]
pull_request:
branches: [ main ]
types:
- opened
- reopened
- synchronize
- ready_for_review
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
name: build-${{ matrix.toolchain }}
strategy:
fail-fast: false
matrix:
toolchain:
- 1.78.0
- stable
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
profile: minimal
components: clippy
- name: Fmt
run: rustup component add rustfmt
- name: Default CI
run: cargo run -p ci
- name: QUIC CI
run: cargo run -p ci --features quic