Skip to content

Fix typo in Setup-RBAC.md header #5

Fix typo in Setup-RBAC.md header

Fix typo in Setup-RBAC.md header #5

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Install Dependencies
run: |
chmod +x mvnw
./mvnw clean install
- name: Run Tests
run: ./mvnw test
deploy:
needs: build
runs-on: ubuntu-latest
steps:
- name: Deploy Application
run: echo "Deploying application..."