chore: update example reports #478
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: Test | |
| on: [push] | |
| jobs: | |
| Test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.8' | |
| cache: 'pip' # cache pip dependencies | |
| - run: sudo apt-get install libegl1-mesa | |
| - run: pip install -r requirements.txt | |
| - run: pip --version | |
| - run: python lw_report_gen.py --author Author --customer Customer | |
| env: | |
| LW_ACCOUNT: ${{ secrets.LW_ACCOUNT }} | |
| LW_SUBACCOUNT: ${{ secrets.LW_SUBACCOUNT }} | |
| LW_API_KEY: ${{ secrets.LW_API_KEY }} | |
| LW_API_SECRET: ${{ secrets.LW_API_SECRET }} | |
| LOGLEVEL: WARNING |