Skip to content
This repository has been archived by the owner on Nov 21, 2023. It is now read-only.

Bump prometheus-client from 0.18.0 to 0.19.0 #551

Bump prometheus-client from 0.18.0 to 0.19.0

Bump prometheus-client from 0.18.0 to 0.19.0 #551

Workflow file for this run

name: Python test
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install poetry dependencies
run: |
export PATH="$PATH:$HOME/.local/bin"
poetry install --with=dev
- name: Run pre-commit
run: |
export PATH="$PATH:$HOME/.local/bin"
source `poetry env info --path`/bin/activate
pre-commit run --all-files
- name: Run test
run: |
export PATH="$PATH:$HOME/.local/bin"
source `poetry env info --path`/bin/activate
poetry run pytest