Skip to content

fix: removed go.sum from the gitignore #3

fix: removed go.sum from the gitignore

fix: removed go.sum from the gitignore #3

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.19'
- run: go version
- name: Build the provider
run: |
make build