dapr-e2e-tests-crawler #186
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
# ------------------------------------------------------------ | |
# Copyright (c) Microsoft Corporation. | |
# Licensed under the MIT License. | |
# ------------------------------------------------------------ | |
name: dapr-e2e-tests-crawler | |
on: | |
schedule: | |
- cron: '0 0 */3 * *' # At midnight UTC, every 3 days | |
push: | |
branches: | |
- master | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN}} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.9" | |
- name: Install dependencies | |
run: pip install -r test-crawler/requirements.pip | |
- name: Run Script | |
run: python3 test-crawler/__init__.py | |
- name: Compress logs | |
if: always() | |
run: | | |
tar -cvf test-crawler/result.tar tests.txt components.txt | |
- name: Upload results | |
if: always() | |
uses: actions/upload-artifact@master | |
with: | |
name: "result" | |
path: "test-crawler/result.tar" |