Skip to content

chore(deps-dev): bump ruff from 0.0.278 to 0.0.280 #87

chore(deps-dev): bump ruff from 0.0.278 to 0.0.280

chore(deps-dev): bump ruff from 0.0.278 to 0.0.280 #87

Workflow file for this run

name: Test
on:
pull_request:
jobs:
pre-commit:
uses: radiorabe/actions/.github/workflows/[email protected]
python-poetry:
uses: radiorabe/actions/.github/workflows/[email protected]
with:
version: '3.11'
helm-chart:
name: Test Helm Chart
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Build dev image
run: |
docker build -t ghcr.io/radiorabe/acrloader:latest -f Dockerfile .
docker save -o /tmp/acrloader.tar ghcr.io/radiorabe/acrloader:latest
- name: Set up Helm
uses: azure/[email protected]
with:
version: v3.12.0
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install chart-testing
uses: helm/[email protected]
- 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/[email protected]
- name: Load dev image
run: |
kind load image-archive /tmp/acrloader.tar --name chart-testing
- name: Run chart-testing (install)
run: ct --config=.github/ct.yaml install