Skip to content

first try of github test action #1

first try of github test action

first try of github test action #1

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
- dev
- use_poetry
jobs:
run_tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
set-safe-directory: "*"
fetch-depth: 1
- name: install graph-tool
run: apt-get install -y python-graph-tool
- name: install poetry
uses: Gr1N/setup-poetry@v8
- name: Create Environment
run: |
python3 -m venv --system-site-packages .venv
poetry env use .venv/bin/python
poetry install -E net
- name: Run Tests
run: poetry run pytest