Skip to content

mctp: add SecuredMessages header type support #29

mctp: add SecuredMessages header type support

mctp: add SecuredMessages header type support #29

Workflow file for this run

# This workflow contains all tock-ci, seperated into jobs
name: libmctp-ci
on:
push:
pull_request:
jobs:
ci-check:
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v2
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
default: true
components: rustfmt, clippy
- name: Format
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
- name: Clippy
uses: actions-rs/cargo@v1
with:
command: clippy