Skip to content

adding gh actions for promq tests if alerts directory is modified #10

adding gh actions for promq tests if alerts directory is modified

adding gh actions for promq tests if alerts directory is modified #10

Workflow file for this run

name: Test
on:
push:
branches:
- main
paths:
- examples/alerts/**
pull_request:
branches:
- main
paths:
- 'examples/alerts/**'
jobs:
promql-tests:
name: Promql Tests
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Set up Go 1.21.x
uses: actions/setup-go@v4
with:
go-version: 1.21.x
id: go
- name: Check out code
uses: actions/checkout@v4
- name: Debug - List changed files
run: |
echo "Changed files:"
git fetch origin main
git diff --name-only origin/main $GITHUB_SHA
# - name: Run Promql tests
# run: |
# make test-alerts