Skip to content

Commit

Permalink
Updates gitlab action to support new parser
Browse files Browse the repository at this point in the history
*  Removes canopy generation of my_config.peg as it now uses the pe
   library.
*  Adds additional python dependencies to support pe lib as well as
   pytest for unit testing.
  • Loading branch information
miker2 committed Mar 21, 2022
1 parent 99140c6 commit ec0f11a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,13 @@ jobs:
popd
pushd ${{github.workspace}}/python
${{github.workspace}}/canopy/bin/canopy maps.peg --lang python
${{github.workspace}}/canopy/bin/canopy my_config.peg --lang python
popd
- uses: actions/setup-python@v3
with:
python-version: '3.9'
cache: 'pip'
- run: pip install -r requirements.txt
- name: Run python tests
run: |
pushd ${{github.workspace}}/python
Expand Down
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
pe
deepdiff
pytest

0 comments on commit ec0f11a

Please sign in to comment.