Added basic unit test for new prometheus_sampling_engine #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Docker Build CI | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
build_and_test: | |
name: Run Docker build and CI tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Python dependencies | |
run: ./install_python_deps.sh | |
- name: Run linter checkers | |
run: ./test.sh | |
- name: Build the Docker image | |
run: docker build -t docker.io/jasonajack/envoy-logger:$(date +%s) . |