Skip to content

Bump mio from 0.8.9 to 0.8.11 #37

Bump mio from 0.8.9 to 0.8.11

Bump mio from 0.8.9 to 0.8.11 #37

Workflow file for this run

name: tests
on:
push: { branches: ["main"] }
pull_request: { branches: ["*"] }
jobs:
build_and_test:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --workspace --all-targets --color=always --features serde,unix
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
args: --workspace --all-targets --color=always --features serde,unix
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo
- name: Clippy
uses: actions-rs-plus/[email protected]
with:
args: --workspace --all-targets --features serde,unix