Skip to content

Commit

Permalink
Added workflow for tool integration
Browse files Browse the repository at this point in the history
  • Loading branch information
antoninoLorenzo committed Jul 26, 2024
1 parent 6b5f966 commit b7019d3
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/tool_integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: "Tool Integration"

on:
push:
paths:
- 'tools_settings/**'

jobs:
build:
runs-on: ubuntu-latest
env:
REQUIREMENTS_PATH: 'requirements.txt'
steps:
-
name: "Setup python"
uses: actions/setup-python@v4
with:
python-version: ${{ inputs.python-version }}
-
name: "Setup installation requirements"
run: |
pip install --upgrade pip
pip install wheel pylint
pip install -r ${{env.REQUIREMENTS_PATH}}
-
name: "Run TestToolIntegration"
run: python3 test/tool_integration/test_tool_integration.py

0 comments on commit b7019d3

Please sign in to comment.