Skip to content
This repository was archived by the owner on Nov 27, 2025. It is now read-only.

build(docker): enable OpenSSL on distroless-static #93

build(docker): enable OpenSSL on distroless-static

build(docker): enable OpenSSL on distroless-static #93

Workflow file for this run

name: Rust Workflow
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
RUST_VERSION: "1.85.0"
jobs:
check:
name: Check source code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust ${{ env.RUST_VERSION }}
run: rustup install ${{ env.RUST_VERSION }}
- name: Set Rust ${{ env.RUST_VERSION }} as default
run: rustup default ${{ env.RUST_VERSION }}
- name: Install Clippy
run: rustup component add clippy
- name: Check
run: cargo check --config 'build.rustflags = ["-Dwarnings"]'
- name: Run Clippy
run: cargo clippy --config 'build.rustflags = ["-Dwarnings"]'