Adding AMM submission support #1687
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: Go coverage | |
"on": | |
pull_request: | |
branches: [main, develop] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: null | |
jobs: | |
codecov: | |
name: codecov | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.21' | |
id: go | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Get dependencies | |
run: make deps | |
- name: Get coverage | |
run: make coverage |