recettes: ajout des coquilles st jacques #138
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
name: Check Rust | |
on: | |
push: | |
paths-ignore: | |
- 'assets' | |
- '*.md' | |
- 'content' | |
- 'layouts' | |
- 'static' | |
jobs: | |
build_and_test: | |
name: Rust project | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
args: --manifest-path chactivityserver/Cargo.toml | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --release --all-features --manifest-path chactivityserver/Cargo.toml | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: --manifest-path chactivityserver/Cargo.toml |