Skip to content

Dont log hostname for non tls egress (#265) #1176

Dont log hostname for non tls egress (#265)

Dont log hostname for non tls egress (#265) #1176

Workflow file for this run

on:
push:
paths:
- control-plane/**
- data-plane/**
- shared/**
- acme-server
- .github/workflows/lint.yml
name: Lint
jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install MUSL Tools
run: |
sudo apt-get update
sudo apt-get install -y musl-tools
- uses: dtolnay/[email protected]
with:
targets: x86_64-unknown-linux-musl
components: clippy, rustfmt
- uses: Swatinem/rust-cache@v2
with:
shared-key: "standard-cache"
- name: Check formatting
run: cargo fmt --check
- name: Clippy
uses: clechasseur/rs-clippy-check@v3
with:
args: --features enclave -- -D warnings
- name: Clippy check not enclave
uses: clechasseur/rs-clippy-check@v3
with:
args: --features not_enclave -- -D warnings