Skip to content

Fix spelling prometheus & add cpu limit (GOMAXPROCS) #45

Fix spelling prometheus & add cpu limit (GOMAXPROCS)

Fix spelling prometheus & add cpu limit (GOMAXPROCS) #45

Workflow file for this run

---
name: Tests
on:
pull_request:
branches:
- main
jobs:
lint:
name: Linting
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
py:
- "3.10"
- "3.9"
steps:
- name: Setup python for test ${{ matrix.py }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.py }}
- name: Checkout Code
uses: actions/checkout@v2
- name: Install tox-gh
run: python -m pip install tox-gh
- name: Setup test suite
run: tox r -vv --notest
- name: Run tests
run: tox r -vv