Skip to content

GHA workflows: use matrix to handle community/enterprise #80

GHA workflows: use matrix to handle community/enterprise

GHA workflows: use matrix to handle community/enterprise #80

Workflow file for this run

name: Clippy check
on: push
env:
CARGO_TERM_COLOR: always
LIBCLANG_PATH: /usr/lib/llvm-14/lib/
jobs:
clippy_check:
runs-on: ubuntu-latest
strategy:
matrix:
version: [community, enterprise]
steps:
- uses: actions/checkout@v1
- run: rustup component add clippy
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
name: Clippy
args: --features=${{ matrix.version }}