chore(deps-dev): bump mypy from 1.14.1 to 1.15.0 #944
Workflow file for this run
This file contains 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: Test | |
on: | |
pull_request: | |
jobs: | |
pre-commit: | |
uses: radiorabe/actions/.github/workflows/test-pre-commit.yaml@v0.25.0 | |
python-poetry: | |
uses: radiorabe/actions/.github/workflows/test-python-poetry.yaml@v0.25.0 | |
helm-chart: | |
name: Test Helm Chart | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Build dev image | |
run: | | |
docker build -t ghcr.io/radiorabe/catpage:latest -f Dockerfile . | |
docker save -o /tmp/catpage.tar ghcr.io/radiorabe/catpage:latest | |
- name: Set up Helm | |
uses: azure/setup-helm@v4 | |
with: | |
version: v3.11.0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install chart-testing | |
uses: helm/chart-testing-action@v2.7.0 | |
- name: Run chart-testing (list-changed) | |
id: list-changed | |
run: | | |
changed=$(ct --config=.github/ct.yaml list-changed) | |
if [[ -n "$changed" ]]; then | |
echo "changed=true" >> $GITHUB_OUTPUT | |
fi | |
- name: Run chart-testing (lint) | |
run: ct --config=.github/ct.yaml lint | |
- name: Create kind cluster | |
uses: helm/kind-action@v1.12.0 | |
- name: Load dev image | |
run: | | |
kind load image-archive /tmp/catpage.tar --name chart-testing | |
- name: Run chart-testing (install) | |
run: ct --config=.github/ct.yaml install |