Bump openssl from 0.10.56 to 0.10.60 #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow runs on every push and checks whether everything looks good | |
name: Quick check | |
on: | |
push: | |
tags: | |
- "!v*" | |
branches: | |
- master | |
pull_request: | |
types: [assigned, opened, synchronize, reopened] | |
jobs: | |
quick_check: | |
env: | |
CARGO_TERM_COLOR: always | |
strategy: | |
matrix: | |
os: ["ubuntu-latest"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install Rust nightly toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: nightly | |
components: clippy, rustfmt | |
- name: Cache Dependencies & Build Outputs | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-${{ matrix.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- uses: actions/checkout@v3 | |
- name: Cargo fmt | |
uses: actions-rs/cargo@v1 | |
with: | |
toolchain: nightly | |
command: fmt | |
args: --all -- --check | |
- name: Cargo clippy | |
uses: actions-rs/cargo@v1 | |
with: | |
toolchain: nightly | |
command: clippy | |
args: --tests -- -D warnings |