Update comment on CurrentAPI to make clear it is the last committed slot #2702
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
on: [ push, pull_request ] | |
name: test_and_benchmark | |
jobs: | |
test_and_benchmark: | |
strategy: | |
matrix: | |
go-version: [ "1.21.x" ] | |
platform: [ ubuntu-latest ] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Install Go | |
if: success() | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Run tests | |
run: go test -v -covermode=count ./... | |
- name: Run Benchmarks | |
run: go test -bench=. ./... |