This file contains hidden or 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
package counter | |
// internalCounter is an unexported identifier of integer type | |
type internalCounter int |
This file contains hidden or 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
package counter | |
// Count is an exported identifier of integer type | |
type Count int |
This file contains hidden or 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 of workflow to be displyed on Github Console | |
name: Build and Test Go Application | |
# Triggers the workflow on separate events | |
on: | |
push: | |
# Trigger the worflow on push event for all branches | |
branches: | |
- '**' | |
pull_request: |
This file contains hidden or 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 of workflow to be displyed on Github Console | |
name: Build and Test Go Application | |
# Triggers the workflow on separate events | |
on: | |
push: | |
# Trigger the worflow on push event for all branches | |
branches: | |
- '**' | |
pull_request: |
NewerOlder