Switch to hard-coded block secs #311
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration | |
on: [push, pull_request] | |
jobs: | |
flake8-lint: | |
runs-on: ubuntu-latest | |
name: Lint | |
steps: | |
- name: Check out source repository | |
uses: actions/checkout@v2 | |
- name: Set up Python environment | |
uses: actions/setup-python@v1 | |
with: | |
python-version: "3.8" | |
- name: flake8 Lint | |
uses: py-actions/flake8@v1 | |
with: | |
# ignore: "F401" | |
# exclude: "src/ignoreme.py" | |
max-line-length: "120" | |
path: "src" | |
validate-k8s: | |
runs-on: ubuntu-latest | |
name: Validate k8s manifests | |
steps: | |
- name: Check out source repository | |
uses: actions/checkout@v2 | |
- name: Setup Kustomize | |
uses: imranismail/setup-kustomize@v1 | |
with: | |
kustomize-version: "4.5.4" | |
- name: Kustomize | |
run: kustomize build k8s > /tmp/kustomized.yaml | |
- uses: azure/k8s-lint@v1 | |
with: | |
manifests: | | |
/tmp/kustomized.yaml |