[feat] init verifiable ai #81
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Tests | |
on: pull_request | |
jobs: | |
test-pds-gateway: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Use python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.11" | |
- name: Test PDS Gateway | |
run: |- | |
pip3 install poetry | |
pip3 install packaging | |
poetry config virtualenvs.create false | |
poetry install --no-root | |
poetry run pytest | |
working-directory: . |