feat: Add update go package information workflow (#40) #284
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: Build and test | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
# Allows you to run this workflow manually from the Actions tab. | |
workflow_dispatch: | |
# Permissions for the GITHUB_TOKEN. | |
permissions: {} | |
jobs: | |
build_test: | |
name: Call build and test action | |
uses: andrew-field/reusable-workflows/.github/workflows/build-test.yml@master | |
with: | |
test_flags: -race | |
secrets: inherit | |
# Codecov secret used by the build-test action. CODECOV_TOKEN needs to be added as a secret. |