Skip to content

Bump openssl from 0.10.55 to 0.10.63 #83

Bump openssl from 0.10.55 to 0.10.63

Bump openssl from 0.10.55 to 0.10.63 #83

Workflow file for this run

name: "Test"
on: [push, pull_request]
jobs:
check:
name: "Check"
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-D warnings"
steps:
- name: "Checkout sources"
uses: actions/checkout@v2
- name: "Install stable toolchain"
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: "1.70.0"
override: true
- name: "Run cargo check"
uses: actions-rs/cargo@v1
with:
command: check
args: --all-features
test:
name: "Tests"
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-D warnings"
steps:
- name: "Checkout sources"
uses: actions/checkout@v2
- name: "Install stable toolchain"
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: "1.70.0"
override: true
- name: "Run cargo test"
uses: actions-rs/cargo@v1
with:
command: test
args: --all-features
lints:
name: "Lints"
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-D warnings"
steps:
- name: "Checkout sources"
uses: actions/checkout@v2
- name: "Install stable toolchain"
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy
- name: "Run cargo fmt"
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: "Run cargo clippy"
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-features