Skip to content

Merge pull request #62 from ncbo/jenkins_test #164

Merge pull request #62 from ncbo/jenkins_test

Merge pull request #62 from ncbo/jenkins_test #164

Workflow file for this run

name: run tests
on: [push]
jobs:
run-make:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-python@v2
name: setup python
with:
python-version: "3.10"
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install .
pip install .[test]
pip install types-PyYAML
pip install types-requests