Added test_helper for db path creation (#15) #6
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: test | |
# This workflow run tests and build for each push | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
test-db: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: cargo build --verbose | |
- name: Test | |
run: cargo test --verbose |