fix(readme): clarify STORAGE_DIRECTORY is needed for Docker #36
Workflow file for this run
This file contains hidden or 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: CI | |
on: | |
push: | |
branches: | |
- main | |
- "release-[0-9]+.[0-9]+*" | |
pull_request: | |
jobs: | |
verification: | |
name: Verification | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Run Actionlint | |
run: | | |
echo "::add-matcher::.github/actionlint-matcher.json" | |
make lint-actions | |
echo "::remove-matcher owner=actionlint::" | |
- name: Run Hadolint | |
uses: hadolint/[email protected] | |
with: | |
dockerfile: Dockerfile | |
config: .hadolint.yaml | |
- name: Run Yamllint | |
run: | | |
pip install --user yamllint | |
yamllint . | |
- name: Run Helm lint | |
run: | | |
make lint-helm | |
image-build: | |
name: Image build | |
uses: ./.github/workflows/image-build.yaml | |
with: | |
publish: ${{ github.event_name == 'push' }} | |
permissions: | |
contents: read | |
packages: write | |
id-token: write |