Skip to content

support clean up the historical control_directory #289

support clean up the historical control_directory

support clean up the historical control_directory #289

Workflow file for this run

on:
push:
branches: [master]
paths-ignore:
- 'build_doc.sh'
- 'check.sh'
- 'run_ci_tests.sh'
- 'start_sshd.sh'
- 'stop_sshd.sh'
pull_request:
paths-ignore:
- 'build_doc.sh'
- 'check.sh'
- 'run_ci_tests.sh'
- 'start_sshd.sh'
- 'stop_sshd.sh'
name: lint
jobs:
style:
runs-on: ubuntu-latest
name: ${{ matrix.toolchain }}
strategy:
fail-fast: false
matrix:
toolchain: [stable, beta]
steps:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.toolchain }}
components: rustfmt, clippy
override: true
- uses: actions/checkout@v3
- name: cargo fmt --check
uses: actions-rs/cargo@v1
with:
command: fmt
args: --check
- name: cargo clippy
uses: actions-rs/clippy-check@v1
if: always()
with:
token: ${{ secrets.GITHUB_TOKEN }}
doc:
runs-on: ubuntu-latest
steps:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
- uses: actions/checkout@v3
- name: cargo doc
uses: actions-rs/cargo@v1
with:
toolchain: nightly
command: doc
args: --no-deps --all-features
env:
RUSTDOCFLAGS: --cfg docsrs