Skip to content
This repository has been archived by the owner on Apr 14, 2024. It is now read-only.

Add prometheus and grafana #1132

Add prometheus and grafana

Add prometheus and grafana #1132

Workflow file for this run

name: Integration
on: [pull_request]
jobs:
build:
runs-on: self-hosted
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: docker build -t sapphire:test-${{ github.sha }} --target full .
lint:
needs: [build]
runs-on: self-hosted
steps:
- name: Lint
run: >
docker run --rm sapphire:test-${{ github.sha }} pylint sapphire autotests tests
isort:
needs: [build]
runs-on: self-hosted
steps:
- name: Isort
run: docker run --rm sapphire:test-${{ github.sha }} isort --check .
test:
needs: [build]
runs-on: self-hosted
steps:
- name: Test
run: docker run --rm sapphire:test-${{ github.sha }} pytest tests