theHarvester/.github/workflows/theHarvester.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

116 lines
2.9 KiB
YAML
Raw Normal View History

---
2019-09-04 05:32:29 +08:00
name: TheHarvester Python CI
2019-08-28 07:01:20 +08:00
on:
push:
branches:
- '*'
2019-09-01 08:44:54 +08:00
2019-09-01 08:41:23 +08:00
pull_request:
branches:
- '*'
2021-01-09 03:37:05 +08:00
2019-08-28 07:01:20 +08:00
jobs:
Python:
runs-on: ${{ matrix.os }}
2019-08-28 07:01:20 +08:00
strategy:
max-parallel: 8
2019-08-28 07:01:20 +08:00
matrix:
os: [ ubuntu-latest, macos-latest ]
python-version: [ 3.10.12, 3.11 ]
2019-08-28 07:01:20 +08:00
steps:
- uses: actions/checkout@v4
- name: Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip
pip install .[dev]
2023-07-26 23:46:20 +08:00
- name: Lint with black
run: |
black . --diff --check
2023-07-26 23:46:20 +08:00
- name: Lint with isort
run: |
isort . --diff --check
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
2023-07-24 10:56:13 +08:00
flake8 . --count --show-source --statistics --config .flake8
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
2023-07-24 10:56:13 +08:00
flake8 . --count --exit-zero --max-line-length=127 --statistics --config .flake8
- name: Test with pytest
run: |
pytest
- name: Run theHarvester module Anubis
run: |
theHarvester -d apple.com -b anubis
- name: Run theHarvester module Baidu
run: |
theHarvester -d yale.edu -b baidu
- name: Run theHarvester module Bing
run: |
theHarvester -d yale.edu -b bing
- name: Run theHarvester module CertSpotter
run: |
theHarvester -d yale.edu -b certspotter
- name: Run theHarvester module Crtsh
run: |
theHarvester -d hcl.com -b crtsh
- name: Run theHarvester module DnsDumpster
run: |
theHarvester -d yale.edu -b dnsdumpster
- name: Run theHarvester module DuckDuckGo
run: |
theHarvester -d yale.edu -b duckduckgo
- name: Run theHarvester module HackerTarget
run: |
theHarvester -d yale.edu -b hackertarget
- name: Run theHarvester module Intelx
run: |
theHarvester -d yale.edu -b intelx
- name: Run theHarvester module Otx
run: |
theHarvester -d yale.edu -b otx
- name: Run theHarvester module RapidDns
run: |
theHarvester -d yale.edu -b rapiddns
- name: Run theHarvester module Threatminer
run: |
theHarvester -d yale.edu -b threatminer
- name: Run theHarvester module Urlscan
run: |
theHarvester -d yale.edu -b urlscan
- name: Run theHarvester module Yahoo
run: |
theHarvester -d yale.edu -b yahoo
- name: Run theHarvester module DNS brute force
run: |
theHarvester -d yale.edu -c
2022-12-10 08:00:15 +08:00
- name: Static type checking with mypy
run: |
mypy --pretty theHarvester/*/*.py
mypy --pretty theHarvester/*/*/*.py