Skip to content

Add async support to dfu-core #37

Add async support to dfu-core

Add async support to dfu-core #37

Workflow file for this run

name: PR
on:
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
test-and-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v2
- uses: Swatinem/rust-cache@v1
- name: cargo build --no-default-features
uses: actions-rs/cargo@v1
with:
command: build
args: --workspace --no-default-features
- name: cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --workspace --all-features
- name: rustfmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all --tests -- -D warnings
test-windows:
runs-on: windows-latest
steps:
- name: Checkout source
uses: actions/checkout@v2
- uses: Swatinem/rust-cache@v1
- name: cargo build --no-default-features
uses: actions-rs/cargo@v1
with:
command: build
args: --workspace --no-default-features
- name: cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --workspace --all-features
test-macos:
runs-on: macos-latest
steps:
- name: Checkout source
uses: actions/checkout@v2
- uses: Swatinem/rust-cache@v1
- name: cargo build --no-default-features
uses: actions-rs/cargo@v1
with:
command: build
args: --workspace --no-default-features
- name: cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --workspace --all-features