update main.yml #7
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: CI/CD Pipeline | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.22' | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.9' | |
- name: Run tests for QR Code Generator | |
working-directory: qr-code-generator | |
run: | | |
go test -v ./... | |
- name: Install pytest | |
run: pip install flask pytest | |
- name: Run tests for URL Shortener | |
working-directory: url-shortener | |
run: pytest test_url_shortener.py | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build and push API image | |
run: | | |
docker build -t docker.io/prajjwalyd/api:latest ./api | |
docker push docker.io/prajjwalyd/api:latest | |
- name: Build and push URL-Shortener image | |
run: | | |
docker build -t docker.io/prajjwalyd/url-shortener:latest ./url-shortener | |
docker push docker.io/prajjwalyd/url-shortener:latest | |
- name: Build and push QR-Code-Generator image | |
run: | | |
docker build -t docker.io/prajjwalyd/qr-code-generator:latest ./qr-code-generator | |
docker push docker.io/prajjwalyd/qr-code-generator:latest | |
- name: Build and push Analytics image | |
run: | | |
docker build -t docker.io/prajjwalyd/analytics:latest ./analytics | |
docker push docker.io/prajjwalyd/analytics:latest |