Skip to content

updated pipeline and version #1

updated pipeline and version

updated pipeline and version #1

Workflow file for this run

name: Test
on:
push:
branches:
- main
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2
# Setup Python (faster than using Python container)
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Install dependencies
run: |
pip install numpy, pytest, coverage
pip install -e .
- name: Run tests with pytest
run: coverage run --source pathfinding3d -m pytest
- name: Show basic test coverage report
run: coverage report