mirror of
https://github.com/laramies/theHarvester.git
synced 2026-08-25 23:32:24 +02:00
* support python 3.14 * fix syntax warnings * bump dockerfile to 3.14, optimize build time + size
14 lines
329 B
YAML
14 lines
329 B
YAML
name: TheHarvester Docker Image CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- name: Build the Docker image
|
|
run: docker build --tag theharvester .
|
|
- name: Smoke test
|
|
run: docker run --rm theharvester --help | grep restfulHarvest
|