Fix nix shell dependency name change #143
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
name: macOS | |
on: [push] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Install dependencies | |
run: brew install sqlite3 | |
- name: Build | |
run: cargo build --verbose | |
- name: Build tests | |
run: cargo test --verbose --no-run | |
- name: Run tests | |
run: cargo test --verbose |