Opentelemetry: Drop more metrics: healthcheck and /metrics #956
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: CI | |
on: [push, pull_request] | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Define python | |
run: echo "PYTHON_VERSION=$(cat .python-version)" >> $GITHUB_ENV | |
- name: Install python version | |
uses: gabrielfalcao/pyenv-action@v11 | |
with: | |
default: "${{ env.PYTHON_VERSION }}" | |
command: pip install -U pip | |
- name: Show python version | |
run: python --version | |
- name: Install dependencies | |
run: | | |
pip install pre-commit | |
pre-commit install | |
- name: Run pre-commit | |
run: pre-commit run --all-files |