Skip to content

🔖 Trying to tag v0.2.0 (pending working CI run) #152

🔖 Trying to tag v0.2.0 (pending working CI run)

🔖 Trying to tag v0.2.0 (pending working CI run) #152

Workflow file for this run

name: test
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the develop branch
on:
push:
branches: [ main ]
tags: [v*]
paths:
- src/python/**
pull_request:
branches: [ main ]
paths:
- src/python/**
- .github/workflows/test.yml
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build_and_test:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- run: pip install -r src/python/requirements.txt
- run: pip install igraph==0.10.4
- run: pip install pytest
# Install vimure
- name: Install Vimure
run: pip install src/python/.
# Run project tests
- name: Run tests
run: python -m pytest -s -vv --pyargs vimure