Skip to content

Commit

Permalink
Create continous-intigration.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lavanya-sharma-clouddrove authored Sep 4, 2024
1 parent 111f519 commit 2f35274
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/continous-intigration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
uses: ./.github/workflows/build.yml

test:
needs: build
uses: ./.github/workflows/test.yml

deploy:
needs: test
uses: ./.github/workflows/deploy.yml

0 comments on commit 2f35274

Please sign in to comment.