Skip to content

Handle empty target groups and improve dashboard deployment (#2) #3

Handle empty target groups and improve dashboard deployment (#2)

Handle empty target groups and improve dashboard deployment (#2) #3

name: Pre-Pull-Request
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Run pre-commit
uses: pre-commit/action@v3.0.1