Added tag v3.0.0 for changeset 685df78c5778 #67
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |