Skip to content
This repository has been archived by the owner on Aug 25, 2023. It is now read-only.

Bump net2 from 0.2.33 to 0.2.38 #96

Bump net2 from 0.2.33 to 0.2.38

Bump net2 from 0.2.33 to 0.2.38 #96

Workflow file for this run

on:
push:
branches:
- master
pull_request: {}
name: Continuous integration
jobs:
ci:
strategy:
matrix:
rust:
- stable
- beta
- nightly
os:
- ubuntu-latest
- windows-latest
- macOS-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
name: Checkout
- uses: actions-rs/toolchain@v1
name: Verify Rust Toolchain
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- uses: actions-rs/cargo@v1
name: Clippy Lint
with:
command: clippy
args: --all-targets --all-features -- -D warnings
- uses: actions-rs/cargo@v1
name: Build
with:
command: build
args: --verbose --all-features
# - uses: actions-rs/cargo@v1
# name: Unit Tests
# with:
# command: test
# args: --all-features
- uses: actions-rs/cargo@v1
name: Format Check
with:
command: fmt
args: --all -- --check
# - uses: actions-rs/cargo@v1
# name: Build Documentation
# with:
# command: doc
# args: --no-deps --all-features