Skip to content

Add module to generate SciX public identifiers given input integer. #37

Add module to generate SciX public identifiers given input integer.

Add module to generate SciX public identifiers given input integer. #37

Workflow file for this run

name: Python CI actions
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.8"
- uses: pre-commit/action@v2.0.3
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
pip install .
pip install -e '.[dev]'
- name: Test with pytest
run: |
pytest
- name: Coveralls
run: coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}