Skip to content

Bump openssl from 0.10.55 to 0.10.61 #116

Bump openssl from 0.10.55 to 0.10.61

Bump openssl from 0.10.55 to 0.10.61 #116

Workflow file for this run

name: test
on:
pull_request:
types:
- opened
- synchronize
push:
branches:
- master
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
CARGO_NET_RETRY: 10
RUSTUP_MAX_RETRIES: 10
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- name: Compile
run: cargo test --workspace --no-run --locked
- name: Run format
run: cargo fmt --all -- --check
- name: Run clippy
run: cargo clippy --workspace -- -D warnings
- name: Run tests
run: cargo test --workspace -- --nocapture --quiet