Merge branch 'main' into add_series_chunk_filter_test #47
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: Checks | |
on: [push] | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
env: | |
BUILD_IN_CONTAINER: false | |
container: | |
image: grafana/loki-build-image:0.32.0 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
- run: make lint | |
- run: make check-doc | |
- run: make check-mod | |
- run: make validate-example-configs | |
- run: make check-example-config-doc | |
- run: make check-drone-drift | |
- run: make check-generated-files | |
- run: make test |