Add Security Scanning workflow using CodeQL #28
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: Integration Tests | |
on: | |
push: # Triggers on any push to any branch | |
pull_request: # Triggers on any pull request to any branch | |
jobs: | |
integration-tests: | |
name: Run Integration Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
# Set up Python environment if Python-based integration tests are required | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.x' | |
- name: Install Python dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
# Set up Node.js environment if Node.js-based integration tests are required | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16.x' | |
- name: Install Node.js dependencies | |
run: npm install | |
# Run Integration Tests | |
- name: Run Integration Tests | |
run: | | |
# Run Python integration tests if any (example command) | |
pytest tests/integration --junitxml=integration-test-results.xml || echo "No Python integration tests found." | |
# Run Node.js integration tests if any (example command) | |
npm run test:integration || echo "No Node.js integration tests found." | |
# Optionally, upload integration test results | |
- name: Upload Test Results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: integration-test-results | |
path: integration-test-results.xml # Adjust path based on output files |