view .github/workflows/test.yml @ 628:d9ddb06a1d1e

Removed getrandom dep
author NumberFour8 <lukas.pohanka@inina.net>
date Tue, 05 Sep 2023 13:30:45 +0200
parents c0454e18fca0
children
line wrap: on
line source

on: [push, pull_request]

name: Actions CI

jobs:
  build_and_test:
    name: leveldb-rs
    strategy:
      fail-fast: false
      matrix:
        features: ["async", ""]
        platform: [ubuntu-latest, windows-latest, macos-latest]
    runs-on: ${{ matrix.platform }}
    steps:
      - uses: actions/checkout@v2
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
          profile: minimal
          default: true
      - uses: actions-rs/cargo@v1
        with:
          command: test
          args: --no-default-features --features=${{ matrix.features }}