Skip to content
This repository has been archived by the owner on Aug 10, 2024. It is now read-only.

Use absolute path for volumes #5

Use absolute path for volumes

Use absolute path for volumes #5

Workflow file for this run

name: Deployment
on:
- push
- workflow_dispatch
permissions:
contents: read
jobs:
commit:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:13
env:
POSTGRES_USER: root
POSTGRES_PASSWORD: postgres
POSTGRES_DB: reboot
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
rabbitmq:
image: rabbitmq:3
ports:
- 5672:5672
volumes:
- ${{ github.workspace }}/rabbitmq.conf:/etc/rabbitmq/rabbitmq.conf
- ${{ github.workspace }}/dev/ssl/cert:/dev/ssl/cert
options: --health-cmd "rabbitmqctl node_health_check" --health-interval 30s --health-timeout 5s --health-retries 5
steps:
- name: Checkout the Git repository
uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Install dependencies
run: |
make post-install
- name: Lint with autopep8
run: |
make lint-check
- name: Test with unittest
run: |
make celery &
make test
make coverage