Add pre_exec function to completely daemonize the command #922
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: CI | |
| on: [push, pull_request] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Build | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y --no-install-recommends libudev-dev | |
| cargo build --release | |
| clippy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Clippy | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y --no-install-recommends libudev-dev | |
| cargo clippy | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Run tests | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y --no-install-recommends libudev-dev | |
| cargo test --verbose | |
| documentation: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Check documentation | |
| run: | | |
| sudo apt update | |
| sudo apt install --no-install-recommends scdoc | |
| for file in $(find . -type f -iwholename "./docs/*.scd"); do scdoc < $file > /dev/null; done | |
| rustfmt: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Check formatting | |
| run: | | |
| cargo fmt -- --check |