fix: use go version from go.mod in CI #3
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: test | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the repository | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
# Setup Golang | |
- name: 🐿 Setup Golang | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: 'go.mod' | |
# Test & coverage report creation | |
- name: Test & coverage report creation | |
run: go test -cover -mod=readonly ./x/... |