Update module github.com/stretchr/testify to v1.9.0 #91
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 | |
- lint_adoc | |
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: No diff | |
run: git diff --exit-code | |
- name: Build image | |
run: make docker | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Compile Docs | |
run: make docs |