Skip to content

Version Bump

Version Bump #7

Workflow file for this run

name: Test Python Application
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest ]
python-version: [ "3.10", "3.x" ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set Up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies and Build
run: |
python -m pip install --upgrade pip setuptools build wheel
python -m build
pip install .
- name: Run Python Application
run: |
forbidden -dbg -t methods -u 'https://www.google.com' -o 'results.json'