Skip to content

Updated the root calling function #7

Updated the root calling function

Updated the root calling function #7

Workflow file for this run

name: JWT CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.21.3
- name: Build
run: go build -v ./...
# - name: Test
# run: go test -v ./...
- name: Message
run: echo "Go CI Completed Successfully"