Update prometheus and grafana versions for ocp 4.16 compatability #330
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: Conftest | |
on: | |
push: | |
branches: [ master ] | |
paths: | |
- '_test/**' | |
- 'charts/**' | |
- '.github/workflows/conftest.yml' | |
- 'Makefile' | |
pull_request: | |
branches: [ master ] | |
paths: | |
- '_test/**' | |
- 'charts/**' | |
- '.github/workflows/conftest.yml' | |
- 'Makefile' | |
jobs: | |
conftest: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.9'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
cache-dependency-path: | | |
**/requirements*.txt | |
pyproject.toml | |
- name: Install dependencies | |
run: | | |
make dev-env | |
- name: Run conf-tests | |
run: | | |
make conf-tests |