Skip to content

feat: verify sha256sum of downloaded attachments (#224) #10

feat: verify sha256sum of downloaded attachments (#224)

feat: verify sha256sum of downloaded attachments (#224) #10

Workflow file for this run

name: Build
on:
push:
branches:
- main
tags:
- v0.*
pull_request:
env:
CARGO_INCREMENTAL: 0
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build_and_test:
strategy:
matrix:
cargo_flags: ["--all-features", "--no-default-features"]
name: cargo ${{ matrix.cargo_flags }}
runs-on: ubuntu-latest
env:
RUSTFLAGS: -D warnings
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Configure CI cache
uses: Swatinem/rust-cache@v2
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --all-targets ${{ matrix.cargo_flags }}
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
args: --all-targets ${{ matrix.cargo_flags }}
- name: Test docs
uses: actions-rs/cargo@v1
with:
command: test
args: --doc ${{ matrix.cargo_flags }}
rustfmt:
name: rustfmt
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: rustfmt
- name: Check code format
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
clippy:
name: clippy
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: clippy
- name: Setup CI cache
uses: Swatinem/rust-cache@v2
- name: Run clippy lints
uses: actions-rs/cargo@v1
with:
command: clippy