Skip to content

Finish unit tests for navigation and ast #10

Finish unit tests for navigation and ast

Finish unit tests for navigation and ast #10

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install .
- name: Run pytest
run: pytest