Skip to content

Unit tests

Unit tests #1

Workflow file for this run

name: pyright
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Poetry
uses: abatilo/actions-poetry@v2
- name: Install the project dependencies
run: poetry install --with=dev
- run: echo "$(poetry env info --path)/bin" >> $GITHUB_PATH
- uses: jakebailey/pyright-action@v2
with:
working-directory: "./dfttools"