refactor: separate storage from data handling, improve error handling #113
This file contains hidden or 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: Develop Test | |
| on: | |
| push: | |
| branches-ignore: | |
| - wip | |
| jobs: | |
| Test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| submodules: recursive | |
| - uses: actions/setup-node@v2 | |
| with: | |
| node-version: '14' | |
| - name: Install Go | |
| uses: actions/setup-go@v1 | |
| with: | |
| go-version: '1.17.x' | |
| - name: Checkout code | |
| uses: actions/checkout@v1 | |
| - name: Tests | |
| run: make && make test |