added api key for semantic scholar #56
Workflow file for this run
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 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] |