Skip to content

Add FP for google k8s engine #356

Add FP for google k8s engine

Add FP for google k8s engine #356

Workflow file for this run

name: "Validations"
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
env:
PYTHON_VERSION: "3.10"
jobs:
Checks:
name: "Checks"
runs-on: ubuntu-22.04-4core-16gb
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- name: Setup Python
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0
with:
python-version: ${{ env.PYTHON_VERSION }}
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
with:
path: venv
key: ${{ hashFiles('requirements.txt') }}-${{ hashFiles('Makefile') }}
- name: Run static-analysis
run: make static-analysis
- name: Run build-sboms
run: make build-sboms