This repository was archived by the owner on Nov 27, 2025. It is now read-only.
build(docker): enable OpenSSL on distroless-static #93
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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"]' |