fix: set timeout for like operation in like button #85
Workflow file for this run
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
# install dependency and current package | |
name: Test | |
on: | |
pull_request: | |
types: | |
- review_requested | |
branches: | |
- beta | |
- release | |
concurrency: | |
group: test-${{ github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
install-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: pipx install poetry | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
cache: poetry | |
- name: Install and Test | |
env: | |
TEST_PASSWORD: ${{ secrets.TEST_PASSWORD }} | |
TEST_TOKEN: ${{ secrets.TEST_BOT_TOKEN }} | |
run: | | |
echo "::group::Install Dependencies" | |
poetry install --sync -n -vv | |
echo "::endgroup::" | |
echo "::group::pytest outputs" | |
poetry run pytest test | |
echo "::endgroup::" | |
- name: Request Changes | |
env: | |
GH_TOKEN: ${{ secrets.COMMENT_PAT }} # the reviewer PAT | |
run: | | |
if [[ $GH_TOKEN != "" ]]; then | |
gh pr review ${{ github.event.pull_request.number }} -r -b "Some test(s) failed." | |
fi |