Moved to GitLab #35
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: fmp | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - testing | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Dependences | |
| run: sudo apt install libgpgme-dev libgpg-error-dev | |
| - name: Set up Rust | |
| uses: actions/checkout@v2 | |
| - name: Install cargo-audit | |
| run: cargo install cargo-audit | |
| - name: build | |
| run: cargo build --verbose | |
| - name: clippy | |
| run: cargo clippy --verbose -- -D warnings | |
| - name: audit | |
| run: cargo audit |