react only to mentions, not replies etc. (fix https://github.com/juni… #196
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: build | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: pipx install poetry | |
- uses: actions/setup-python@v5 | |
with: | |
python-version-file: pyproject.toml | |
cache: poetry | |
- run: poetry install | |
- run: poetry run pytest | |
- if: ${{ github.ref == 'refs/heads/main' }} | |
uses: superfly/flyctl-actions/setup-flyctl@master | |
- if: ${{ github.ref == 'refs/heads/main' }} | |
run: flyctl deploy | |
env: | |
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} |