Skip to content

Added Stream as Export Attribute Macro #111

Added Stream as Export Attribute Macro

Added Stream as Export Attribute Macro #111

Workflow file for this run

on:
push:
branches:
- "main"
pull_request:
name: Testing
jobs:
test:
name: Test Suite
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- "1.75"
- nightly
steps:
- name: Checkout sources
uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: FrancisRussell/[email protected]
name: Cargo Cache
with:
command: cache
- uses: FrancisRussell/[email protected]
name: Install Rust toolchain
with:
command: install-rustup
toolchain: ${{ matrix.rust }}
profile: minimal
default: true
- uses: FrancisRussell/[email protected]
name: Install nextest
with:
command: cargo install
args: cargo-nextest
- name: Install Dart toolchain
uses: dart-lang/setup-dart@v1
- name: Run cargo nextest
continue-on-error: ${{ matrix.rust == 'nightly' }}
run: cargo nextest run --all
lints:
name: Lints
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- "1.75"
- nightly
steps:
- name: Checkout sources
uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: FrancisRussell/[email protected]
name: Cargo Cache
with:
command: cache
- uses: FrancisRussell/[email protected]
name: Install Rust toolchain
with:
command: install-rustup
toolchain: ${{ matrix.rust }}
profile: minimal
components: clippy rustfmt
default: true
- name: Format
continue-on-error: ${{ matrix.rust == 'nightly' }}
run: cargo fmt --all -- --check
- name: Clippy
continue-on-error: ${{ matrix.rust == 'nightly' }}
run: cargo clippy -- -D warnings