Skip to content

Merge pull request #6 from fabian-sp/f-refactor #6

Merge pull request #6 from fabian-sp/f-refactor

Merge pull request #6 from fabian-sp/f-refactor #6

Workflow file for this run

name: Testing
on:
push:
branches: [ main ]
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
pip install pytest
pytest ncopt/tests/