Playbook to push CK data file file into loki storage #3903
This file contains hidden or 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: Check custom_logger | |
| on: [push, pull_request] | |
| jobs: | |
| test_custom_logger: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - run: python3 -m pip install ansible | |
| - name: Run the test_logger playbook. | |
| run: cd ci && rm -rf ~/ci-framework-data/tests/feature-verification-tests/test_run_result.out && ${HOME}/.local/bin/ansible-playbook -v github/test_logger.yml && diff -s ~/ci-framework-data/tests/feature-verification-tests/test_run_result.out github/test_logger_expected | |