Skip to content

build(deps): bump jinja2 from 3.1.2 to 3.1.3 #14

build(deps): bump jinja2 from 3.1.2 to 3.1.3

build(deps): bump jinja2 from 3.1.2 to 3.1.3 #14

Workflow file for this run

on: pull_request
jobs:
validate:
name: Validate
runs-on: ubuntu-latest
env:
API_HOST: ${{ secrets.API_HOST }}
API_TOKEN: ${{ secrets.API_TOKEN }}
steps:
- name: Validate Secrets
if: ${{ env.API_HOST == '' || env.API_TOKEN == '' }}
run: |
echo "API_HOST or API_TOKEN not set"
exit 0
- name: Checkout panther-analysis
uses: actions/checkout@v4
- name: Set python version
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install pipenv
run: pip install pipenv
- name: Install
run: make install
- name: Setup venv
run: make venv
- name: validate
run: |
pipenv run panther_analysis_tool validate --api-host ${{ env.API_HOST }} --api-token ${{ env.API_TOKEN }}