Skip to content

Added more GDB apis and Github Templates #2

Added more GDB apis and Github Templates

Added more GDB apis and Github Templates #2

Workflow file for this run

name: Run Tests on Pull Request
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r gdbui_server/requirements.txt
- name: Run tests on changes
run: |
git fetch origin ${{ github.event.pull_request.head.ref }}
git checkout FETCH_HEAD
python -m unittest discover -s gdbui_server -p 'flask_test.py'