Skip to content

Change version number to 0.1.0 #22

Change version number to 0.1.0

Change version number to 0.1.0 #22

Workflow file for this run

name: Run tests
on: [push]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
cache: 'pip'
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r utils/requirements.txt
- name: Validate Turtle file
run: |
python -m pytest utils