Skip to content

Moved to GitLab

Moved to GitLab #35

Workflow file for this run

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