bitwarden-crd-operator/.github/workflows/test-and-lint.yml

67 lines
1.8 KiB
YAML
Raw Normal View History

2023-05-11 08:27:43 +00:00
name: Lint and Test
2023-05-10 08:41:59 +00:00
on: pull_request
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
2023-05-10 08:41:59 +00:00
with:
fetch-depth: 0
- name: Set up Helm
uses: azure/setup-helm@v4
2023-05-10 08:41:59 +00:00
with:
version: v3.11.2
- uses: actions/setup-python@v5
2023-05-10 08:41:59 +00:00
with:
python-version: '3.9'
check-latest: true
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.6.1
2023-05-10 08:41:59 +00:00
- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }})
if [[ -n "$changed" ]]; then
echo "changed=true" >> "$GITHUB_OUTPUT"
fi
- name: Run chart-testing (lint)
if: steps.list-changed.outputs.changed == 'true'
run: ct lint --target-branch ${{ github.event.repository.default_branch }}
2024-01-15 21:33:21 +00:00
- name: Install ah cli
run: |
export AH_VERSION=1.17.0
curl -LO https://github.com/artifacthub/hub/releases/download/v${AH_VERSION}/ah_${AH_VERSION}_linux_amd64.tar.gz
tar -xf ah_${AH_VERSION}_linux_amd64.tar.gz
chmod +x ./ah
sudo mv ./ah /usr/bin/ah
rm LICENSE
- name: ah lint
run: |
ah lint
2023-05-11 08:27:43 +00:00
pr-build:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
2023-05-11 08:27:43 +00:00
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
2023-05-11 08:27:43 +00:00
2024-02-19 21:52:18 +00:00
- name: GHCR Build
2023-05-11 08:27:43 +00:00
id: docker_build
uses: docker/build-push-action@v5
2023-05-11 08:27:43 +00:00
with:
push: false
platforms: linux/amd64,linux/arm64
tags: ghcr.io/lerentis/bitwarden-crd-operator:dev