Skip to content

API key for semantic scholar #57

API key for semantic scholar

API key for semantic scholar #57

Workflow file for this run

name: Test Code with Pip
on:
push:
branches:
- "**"
- "!gh-pages"
pull_request:
branches:
- main
workflow_dispatch:
inputs:
name:
description: 'Test It'
required: false
default: 'I Just wanna test it'
jobs:
build:
strategy:
matrix:
python-version: [3.8, 3.9]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install from source (required for the pre-commit tests)
run: pip install ".[all]"
- name: Test with pytest
run: |
pytest --cache-clear --cov=app tests/ > pytest-coverage.txt
- name: Comment coverage
uses: coroo/[email protected]