Tolerate more on intensive fire #27
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: Deploy | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
unit-test: | |
name: Unit Test | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:14 | |
# Required | |
env: | |
POSTGRES_HOST_AUTH_METHOD: trust | |
# Set health checks to wait until postgres has started | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
# Maps tcp port 5432 on service container to the host | |
- 5432:5432 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 2.7 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '2.7' | |
cache: 'pip' | |
- name: Display Python version | |
run: python -c "import sys; print(sys.version)" | |
- name: Install dependencies | |
run: pip install -r requirements.txt | |
- name: Test | |
run: make test-coverage | |
- name: Upload Coverage | |
run: bash <(curl -s https://codecov.io/bash) | |
docker-build-push: | |
name: Docker Build | |
runs-on: ubuntu-latest | |
# needs: unit-test # TODO: enable back after migrating from python 2.7 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push | |
id: docker_build | |
uses: docker/build-push-action@v4 | |
with: | |
push: true | |
tags: polyrabbit/wecron:latest | |
- name: Image digest | |
run: echo ${{ steps.docker_build.outputs.digest }} | |
fly-deploy: | |
name: Fly Deploy | |
runs-on: ubuntu-latest | |
needs: docker-build-push | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: superfly/flyctl-actions/setup-flyctl@master | |
- run: flyctl deploy | |
env: | |
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} |