Skip to content

ci: fix failing k3s start #4

ci: fix failing k3s start

ci: fix failing k3s start #4

Workflow file for this run

name: ci
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
id: setup-python
uses: actions/setup-python@v4
- name: Cache virtualenv
id: cache-venv
uses: actions/cache@v3
with:
path: .venv
key: ${{ runner.os }}-py${{ steps.setup-python.outputs.python-version }}-venv-${{ hashFiles('pyproject.toml') }}
- name: Cache pre-commit
id: cache-pre-commit
uses: actions/cache@v3
with:
path: ~/.cache/pre-commit
key: ${{ runner.os }}-py${{ steps.setup-python.outputs.python-version }}-pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Run make install
if: steps.cache-venv.outputs.cache-hit != 'true'
run: make install
- name: install k3d
run: curl -s https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | bash
# - uses: mxschmitt/action-tmate@v3
- run: make cluster
- run: make kubes-minio
- run: make kubes-prefect
- run: make deploy