Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgafni committed Apr 18, 2024
1 parent fe68f76 commit 76000c7
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/minikube_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Minikube Integration Tests
on:
push:

jobs:
test:
runs-on: ubuntu-latest
name: build example and deploy to minikube
steps:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- uses: actions/checkout@v4
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
version: 1.4.2
virtualenvs-create: false
virtualenvs-in-project: false
installer-parallel: true
- uses: azure/setup-helm@v4.2.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Start minikube
uses: medyagh/setup-minikube@master
with:
start: false
driver: docker
- name: Try the cluster !
run: kubectl get pods -A
- name: Install dependencies
run: poetry install --all-extras --sync
- name: Run tests
run: pytest -v .

0 comments on commit 76000c7

Please sign in to comment.