Skip to content

Update github actions to fix poetry-depenencies issue #9

Update github actions to fix poetry-depenencies issue

Update github actions to fix poetry-depenencies issue #9

Workflow file for this run

name: FastAPI Docker Image Test, Build and Push to DockerHub
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
code-quality:
name: Check coding standards
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: 3.11
cache: poetry
- name: Install Python dependencies
run: poetry install
- name: Check code formatting
run: poetry run poe black-check
test:
name: Run tests
needs: code-quality
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: 3.11
cache: poetry
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run poe test-unit
docker:
name: Build and Push to DockerHub
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: src
push: true
tags: san99tiago/fastapi-docker-github-actions:latest