Skip to content

misc: improve the README.md #27

misc: improve the README.md

misc: improve the README.md #27

Workflow file for this run

name: Lint and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install isort flake8 black pytest
- name: Lint & Check
run: |
isort .
black .
flake8 .
- name: Set up Helm
uses: azure/setup-helm@v3
- name: Create k8s Kind Cluster
uses: helm/kind-action@v1.4.0
- name: Test with pytest
run: |
pytest -vv .