Skip to content

Send buffer does not grow indefinitely #237

Send buffer does not grow indefinitely

Send buffer does not grow indefinitely #237

Workflow file for this run

name: Static Analysis
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
static-analysis:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [
ubuntu-latest,
]
toolchain: [
stable,
]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Go Toolchain
uses: actions/setup-go@v3
with:
go-version: '=1.18.0'
- name: Rust Toolchain
run: |
rustup toolchain install ${{ matrix.toolchain }} --profile minimal --no-self-update
rustup default ${{ matrix.toolchain }}
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Cargo Install Readme
run: cargo install cargo-rdme
- name: Make Static
run: make static