Skip to content

Add Helm state and action scope utilities #4

Add Helm state and action scope utilities

Add Helm state and action scope utilities #4

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
workflow_dispatch:
jobs:
test:
name: Tests and release metadata
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install release tools
run: python -m pip install --upgrade build pytest twine
- name: Run tests
run: python -m pytest -q
- name: Check release versions
run: python scripts/release_version_check.py
- name: Build package
run: python -m build
- name: Check package metadata
run: python -m twine check dist/*