Skip to content

Bump mio from 0.8.8 to 0.8.11 #91

Bump mio from 0.8.8 to 0.8.11

Bump mio from 0.8.8 to 0.8.11 #91

Workflow file for this run

name: podsync ci
on:
push:
pull_request:
jobs:
check-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Rust Setup
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy
- name: Format
uses: actions-rs/cargo@v1
continue-on-error: true
with:
command: fmt
args: --all -- --check
- name: Check
uses: actions-rs/cargo@v1
with:
command: check
args: --features backend-sql
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
args: --features backend-sql