MeiliSearch/.github/workflows/rust.yml
2021-03-16 13:08:26 +01:00

25 lines
365 B
YAML

name: Rust
on:
pull_request:
push:
# trying and staging branches are for Bors config
branches:
- trying
- staging
env:
CARGO_TERM_COLOR: always
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose