Skip to content

Bump openssl from 0.10.55 to 0.10.60 #4

Bump openssl from 0.10.55 to 0.10.60

Bump openssl from 0.10.55 to 0.10.60 #4

Workflow file for this run

name: Base CI/CD Pipeline
on:
push:
branches-ignore:
- 'main'
pull_request:
branches:
- 'main'
workflow_call:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build
run: cargo build --release
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Format check
run: cargo fmt -- --check
- name: Clippy
run: cargo clippy -- -D warnings