Skip to content

feat: add airflow, docker run shell #12

feat: add airflow, docker run shell

feat: add airflow, docker run shell #12

Workflow file for this run

---
# Template: 1.0.0
name: "SAST / GitLeaks"
on:
pull_request:
branches:
- "main"
push:
branches:
- "feature/**"
jobs:
sast-GitLeaks:
runs-on: "ubuntu-latest"
steps:
- name: "Check out repository code"
uses: "actions/checkout@main"
- name: "Prepare environment"
run: "./bin/dev-lib-base"
- name: "Download tools"
run: "./bin/dev-lib-gitleaks"
- name: "Run SAST"
run: "./bin/dev-sast-gitleaks"
...