Skip to content

fix: Removed CORS config from Ingress #56

fix: Removed CORS config from Ingress

fix: Removed CORS config from Ingress #56

Workflow file for this run

---
name: lint
# -----------------
# Control variables (GitHub Secrets)
# -----------------
#
# (n/a)
#
# -----------
# Environment (GitHub Environments)
# -----------
#
# Environment (n/a)
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r build-requirements.txt
pip install -r requirements.txt
- name: Lint
run: |
yamllint .
find . -type f -name '*.yaml.j2' -exec yamllint {} +