build(deps): bump actions/checkout from 4.1.7 to 4.2.0 #199
Workflow file for this run
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: webapp-api-test | |
on: | |
pull_request: | |
branches: | |
main | |
paths: | |
- 'tools/web-fuzzing-introspection/**' | |
- '.github/helper/**' | |
- '.github/workflows/webapp-api-test.yml' | |
permissions: read-all | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: webapp-api-test | |
steps: | |
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v2.4.0 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v3.0.0 | |
with: | |
python-version: 3.8 | |
- name: Install venv | |
run: sudo apt-get install python3-venv | |
- name: Set up venv | |
run: python3 -m venv tools/web-fuzzing-introspection/.venv | |
- name: Active venv dependencies | |
run: source tools/web-fuzzing-introspection/.venv/bin/activate && pip install -r tools/web-fuzzing-introspection/requirements.txt | |
- name: Run test | |
run: source tools/web-fuzzing-introspection/.venv/bin/activate && python3 .github/helper/api_test.py |