Files
qdrant/.github/workflows/rust.yml
Andrey Vasnetsov 20ad71507e fix test script
2021-01-24 17:19:19 +01:00

35 lines
671 B
YAML

name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install minimal stable
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- uses: actions/checkout@v2
- name: Install dependencies
run: sudo apt-get install clang libopenblas-dev libgfortran-9-dev
- name: Run tests
run: OPENBLAS_TARGET=CORE2 cargo test --all
# build:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - name: Build
# run: docker build . --tag=qdrant