Skip to content

Bump openssl from 0.10.35 to 0.10.55 #353

Bump openssl from 0.10.35 to 0.10.55

Bump openssl from 0.10.35 to 0.10.55 #353

Workflow file for this run

name: CI
on: [push, pull_request]
env:
CARGO_INCREMENTAL: 0
RUSTFLAGS: -D warnings
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Install cargo-download
run: cargo install cargo-download
- name: Install cargo-geiger
run: cargo install cargo-geiger
- name: Lint
run: |
cargo fmt -- --check
cargo clippy --all-targets
- name: Run tests
run: cargo test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}