Skip to content

Update README.md - bibtex style #57

Update README.md - bibtex style

Update README.md - bibtex style #57

Workflow file for this run

name: Test
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
jobs:
test:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v2
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
# Use the Python version that matches your development environment
- name: Install dependencies
run: pip install .[dev]
- name: Run tests
run: pytest