Skip to content

Update README.md

Update README.md #91

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches: [ "main", "develop" ]
pull_request:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
permissions: read-all
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
unit-tests:
runs-on: ubuntu-latest
name: Terraform Unit Tests
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run unit tests
run: echo "Unit tests (not active)"