Skip to content

update zenodo file access #68

update zenodo file access

update zenodo file access #68

Workflow file for this run

name: Test
on:
pull_request: {}
push:
branches: master
tags: "*"
workflow_dispatch: null
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install dependencies with pipenv
run: |
pip install -r requirements_dev.txt
- run: isort --recursive --diff .
- run: black --check .
- run: flake8
- run: pytest
- run: pre-commit run