Migrate state-crawler to bugout. #2169
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: Locust summary | |
on: [pull_request_target] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: PR head repo | |
id: head_repo_name | |
run: | | |
HEAD_REPO_NAME=$(jq -r '.pull_request.head.repo.full_name' "$GITHUB_EVENT_PATH") | |
echo "PR head repo: $HEAD_REPO_NAME" | |
echo "::set-output name=repo::$HEAD_REPO_NAME" | |
- name: Checkout git repo | |
uses: actions/checkout@v2 | |
with: | |
repository: ${{ steps.head_repo_name.outputs.repo }} | |
fetch-depth: 0 | |
- name: Install python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.8" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools | |
pip install bugout-locust | |
- name: Generate and send Locust summary | |
env: | |
BUGOUT_SECRET: ${{ secrets.BUGOUT_SECRET }} | |
run: | | |
locust.github publish |