add citation #105
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 | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install poetry | |
run: python -m pip install poetry==1.3.2 poethepoet==0.10.0 | |
- name: Install dependencies | |
run: poetry install | |
- name: Check formatting | |
run: poe fmt-test | |
- name: Check syntax | |
run: poe flake | |
- name: Run tests | |
run: poe test | |