Skip to content

don't know what I'm doing, but this seems to work #46

don't know what I'm doing, but this seems to work

don't know what I'm doing, but this seems to work #46

Workflow file for this run

name: build
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: "poetry"
- run: poetry install
- run: poetry run pytest
- if: ${{ github.ref == 'refs/heads/main' }}
uses: superfly/flyctl-actions@1.3
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
with:
args: "deploy"