OmarAbdelmotaleb / Jobber

SSW-695 Software Engineering Capstone Studio - Project Jobber
2 stars 1 forks source link

Set up a CI pipeline for Backend Repo #18

Open rpalival opened 6 months ago

rpalival commented 6 months ago

A simply python workflow to build and test should do for now.

amithvishnu commented 6 months ago

name: Build

on: push: branches:

jobs: build: runs-on: ubuntu-latest

steps:
  - name: Checkout code
    uses: actions/checkout@v2

  - name: Build
    run: |
      # Your build commands here
rpalival commented 6 months ago

This Still needs work, This pipeline has to be able to build and test the unit test cases or if listing is used automatically every time before a PR is merged into the main branch.