Skip to content

Merge pull request #1 from kuberhealthy/codex/add-github-actions-for-… #6

Merge pull request #1 from kuberhealthy/codex/add-github-actions-for-…

Merge pull request #1 from kuberhealthy/codex/add-github-actions-for-… #6

Workflow file for this run

name: Build
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Build package
run: |
python -m pip install --upgrade pip
pip install build
python -m build
- name: Build example container
run: |
make build IMG=kuberhealthy-client:test