feat: allow to omit job cleanup with --kubernetes-omit-job-cleanup (for debugging) #177
Workflow file for this run
This file contains hidden or 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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
formatting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the code | |
uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install poetry | |
run: pip install poetry | |
- name: Determine dependencies | |
run: poetry lock | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
cache: poetry | |
- name: Install Dependencies using Poetry | |
run: poetry install | |
- name: Check formatting | |
run: poetry run black --check . | |
linting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the code | |
uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install poetry | |
run: pip install poetry | |
- name: Determine dependencies | |
run: poetry lock | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
cache: poetry | |
- name: Install Dependencies using Poetry | |
run: poetry install | |
- name: Check code | |
run: poetry run flake8 | |
testing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install poetry | |
run: pip install poetry | |
- name: Determine dependencies | |
run: poetry lock | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
cache: poetry | |
- name: Install dependencies | |
run: | | |
poetry install | |
- name: start minikube | |
id: minikube | |
uses: medyagh/setup-minikube@v0.0.14 | |
# - name: Setup minio | |
# run: | | |
# kubectl create -f .github/workflows/assets/minio.yaml | |
# sleep 10 | |
# kubectl port-forward svc/minio-service 9000:9000 & | |
# - name: Test minio | |
# run: | | |
# export AWS_ACCESS_KEY_ID=minio | |
# export AWS_SECRET_ACCESS_KEY=minio123 | |
# export AWS_EC2_METADATA_DISABLED=true | |
# aws --endpoint-url http://127.0.0.1:9000/ s3 mb s3://test | |
- name: Setup minio | |
uses: comfuture/minio-action@v1 | |
with: | |
access_key: minio | |
secret_key: minio123 | |
port: 9000 | |
- run: | | |
sudo sh -c 'echo "127.0.0.1 host.minikube.internal" >> /etc/hosts' | |
- name: Test minio | |
run: | | |
export AWS_ACCESS_KEY_ID=minio | |
export AWS_SECRET_ACCESS_KEY=minio123 | |
export AWS_EC2_METADATA_DISABLED=true | |
aws --endpoint-url http://host.minikube.internal:9000/ s3 mb s3://test | |
aws --endpoint-url http://localhost:9000/ s3 mb s3://test2 | |
- name: Run pytest | |
run: poetry run coverage run -m pytest tests/tests.py -sv | |
- name: Run Coverage | |
run: poetry run coverage report -m |