make maxSendable dynamic through env variables #55
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration Checks | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
platform: [ ubuntu-latest, macos-latest ] | |
toolchain: [ stable ] | |
include: | |
- toolchain: stable | |
check-fmt: true | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v2 | |
- name: Install Rust ${{ matrix.toolchain }} toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
override: true | |
profile: minimal | |
- name: Build on Rust ${{ matrix.toolchain }} | |
run: cargo build --verbose --color always | |
- name: Check formatting | |
if: matrix.check-fmt | |
run: rustup component add rustfmt && cargo fmt --all -- --check |