Skip to content

Commit

Permalink
added test rules engine github action
Browse files Browse the repository at this point in the history
  • Loading branch information
alanisaac committed Jun 21, 2023
1 parent 4a78cca commit d71d13e
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/test-rules-engine.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Test Rules Engine

on: [push]

defaults:
run:
working-directory: rules-engine

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install -e .
- name: Test with pytest
run: |
pytest

0 comments on commit d71d13e

Please sign in to comment.