MeiliSearch/.github/workflows/rust.yml

25 lines
365 B
YAML
Raw Normal View History

2021-02-24 10:31:28 +01:00
name: Rust
2021-03-16 10:26:08 +01:00
on:
pull_request:
push:
# trying and staging branches are for Bors config
branches:
- trying
- staging
2021-02-24 10:31:28 +01:00
env:
CARGO_TERM_COLOR: always
jobs:
2021-03-16 10:26:08 +01:00
tests:
2021-02-24 10:31:28 +01:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose