Skip to content

Merge pull request #12 from Onemind-Services-LLC/dev #26

Merge pull request #12 from Onemind-Services-LLC/dev

Merge pull request #12 from Onemind-Services-LLC/dev #26

Workflow file for this run

name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
pre_commit:
name: Run lint rules
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Python
uses: actions/[email protected]
with:
python-version: '3.10'
- uses: pre-commit/[email protected]
test:
name: Run tests
runs-on: ubuntu-latest
needs: pre_commit
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Python
uses: actions/[email protected]
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install -e .
pip install pydantic
- name: Run tests
run: python -m unittest