Skip to content

Commit

Permalink
feat: Add CI/CD pipeline with linting, build, and
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] authored Oct 1, 2023
1 parent 66166b8 commit 7e31a41
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: CI/CD

on: [push, pull_request]

permissions: read-all

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install flake8
run: pip install flake8
- name: Run flake8
run: flake8 .

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install Django
run: pip install Django
- name: Run Django build
run: python manage.py check

deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Log in to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Build Docker image
run: docker build -t ${{ secrets.DOCKERHUB_USERNAME }}/djangoline:latest .
- name: Push Docker image
run: docker push ${{ secrets.DOCKERHUB_USERNAME }}/djangoline:latest || true

0 comments on commit 7e31a41

Please sign in to comment.