diff --git a/.github/workflows/dockerci.yml b/.github/workflows/dockerci.yml new file mode 100644 index 00000000..cc9f2f55 --- /dev/null +++ b/.github/workflows/dockerci.yml @@ -0,0 +1,11 @@ +name: TheHarvester Docker Image CI + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Build the Docker image + run: docker build . --file Dockerfile --tag theharvester:$(date +%s) \ No newline at end of file diff --git a/.github/workflows/theHarvester.yml b/.github/workflows/theHarvester.yml index 9845a8e8..12dda69e 100644 --- a/.github/workflows/theHarvester.yml +++ b/.github/workflows/theHarvester.yml @@ -1,4 +1,4 @@ -name: TheHarvester +name: TheHarvester Python CI on: push: @@ -9,7 +9,7 @@ on: branches: - '*' jobs: - test: + Python: runs-on: ubuntu-latest strategy: diff --git a/.lgtm.yml b/.lgtm.yml new file mode 100644 index 00000000..379ccefc --- /dev/null +++ b/.lgtm.yml @@ -0,0 +1,3 @@ +queries: + - exclude: py/import-and-import-from + - exclude: py/polluting-import \ No newline at end of file