mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-23 10:37:41 +08:00
21 lines
380 B
YAML
21 lines
380 B
YAML
|
---
|
||
|
on: [pull_request]
|
||
|
|
||
|
name: Cargo test
|
||
|
|
||
|
jobs:
|
||
|
check:
|
||
|
name: MeiliDB
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v1
|
||
|
- uses: actions-rs/toolchain@v1
|
||
|
with:
|
||
|
profile: minimal
|
||
|
toolchain: stable
|
||
|
override: true
|
||
|
- name: Run cargo test
|
||
|
uses: actions-rs/cargo@v1
|
||
|
with:
|
||
|
command: test
|