Skip to content

added a method to update root password during deployment #1

added a method to update root password during deployment

added a method to update root password during deployment #1

Workflow file for this run

name: Pull Request
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup Go 1.21.x
uses: actions/setup-go@v4
with:
# Semantic version range syntax or exact version of Go
go-version: '1.21.x'
cache-dependency-path: go.sum
- name: Install dependencies
run: |
go get .
- name: Build
run: go build -v ./...