Skip to content

Bump openssl from 0.10.64 to 0.10.66 (#219) #327

Bump openssl from 0.10.64 to 0.10.66 (#219)

Bump openssl from 0.10.64 to 0.10.66 (#219) #327

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
jobs:
windows_build_and_test:
runs-on: windows-2022
steps:
- uses: actions/checkout@v3
- run: cargo build
- run: cargo test
build_and_test:
runs-on: ubuntu-22.04
container: rust:1.74
steps:
- uses: actions/checkout@v3
- run: cargo build
- run: cargo test
lint:
runs-on: ubuntu-22.04
container: rust:1.74
steps:
- uses: actions/checkout@v3
- run: rustup component add clippy
- run: cargo clippy --all-targets --all-features -- -D warnings
fmt:
runs-on: ubuntu-22.04
container: rust:1.74
steps:
- uses: actions/checkout@v3
- run: rustup component add rustfmt
- run: cargo fmt -- --check