Skip to content

Update support clause in SECURITY.md #31

Update support clause in SECURITY.md

Update support clause in SECURITY.md #31

Workflow file for this run

name: Sample CI
on: [ push, pull_request ]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.23.x'
cache: true
- name: Install Go dependencies
run: go mod tidy
working-directory: ./functions/itsmhelper
- name: Build Go functions
run: go build
working-directory: ./functions/itsmhelper
- name: Test Go functions
run: go test ./...
working-directory: ./functions/itsmhelper