update the EnableNotifications Method, add the parameter to specifing… #230
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows | |
on: | |
pull_request: | |
push: | |
branches: | |
- dev | |
- release | |
jobs: | |
build-windows: | |
name: build-windows | |
runs-on: windows-2022 | |
steps: | |
- name: Install Go | |
uses: actions/[email protected] | |
with: | |
go-version: '1.21.0' | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Run unit tests | |
run: go test | |
- name: "Run Windows smoke tests" | |
run: make smoketest-windows |