use pam_sys of pam_client2 #233
This file contains 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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# This workflow checks out code, performs a Codacy security scan | |
# and integrates the results with the | |
# GitHub Advanced Security code scanning feature. For more information on | |
# the Codacy security scan action usage and parameters, see | |
# https://github.com/codacy/codacy-analysis-cli-action. | |
# For more information on Codacy Analysis CLI in general, see | |
# https://github.com/codacy/codacy-analysis-cli. | |
name: Quality Gates | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
branches: | |
- 'main' | |
jobs: | |
rust-quality-gate: | |
name: Rust Quality Gate | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Rust toolchain | |
uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af #@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
components: clippy | |
override: false | |
- name: Install RootAsRole | |
run: cargo xtask dependencies -dip sudo | |
# if pull request review only | |
- uses: mbrobbel/rustfmt-check@master | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
continue-on-error: true #TODO: remove this line when rustfmt-check is fixed | |
- uses: actions-rs/clippy-check@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
args: --all-features |