Skip to content

Merge pull request #19 from SurgeCLI/feature/prometheus #30

Merge pull request #19 from SurgeCLI/feature/prometheus

Merge pull request #19 from SurgeCLI/feature/prometheus #30

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
name: Run Tests
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install Dependencies
run: pip install -r requirements.txt
- name: Run tests with Pytest & Ruff
run: pytest -q --ruff