Skip to content

fix : updated branch in .yml file #1

fix : updated branch in .yml file

fix : updated branch in .yml file #1

Workflow file for this run

name: Go CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.22' # Use the Go version you are using
- name: Install dependencies
run: go mod tidy
- name: Run tests
run: go test -v ./...