Skip to content

Merge pull request #2 from isosafrasaurus/main #78

Merge pull request #2 from isosafrasaurus/main

Merge pull request #2 from isosafrasaurus/main #78

Workflow file for this run

name: Pytest
# workflow triggered by any push on any branch
on: [push]
jobs:
build:
name: Pytest in Pipenv # runs on the latest Ubuntu
runs-on: ubuntu-latest # runs within your Docker container
container:
image: docker://ingeborggjerde/graphnics:main # checkout your code from your repository
# and runs pytest in your pipenv environment
steps:
- uses: actions/checkout@v2
- name: Test with pytest
run: |
python3 -m pytest tests/