Update mikepenz/release-changelog-builder-action action to v4 #801
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: Pull Request | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
linting: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
command: | |
- lint_yaml | |
- docs-vale | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run ${{ matrix.command }} | |
run: make ${{ matrix.command }} | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Generate | |
run: make generate | |
- name: Validate | |
run: make validate | |
- name: No diff | |
run: git diff --exit-code | |
- name: Build image | |
run: make docker | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Validate Docs | |
run: make docs-vale |