Skip to content

fix: ci-tests

fix: ci-tests #2

Workflow file for this run

name: test
on: push
env:
GO_VERSION: "1.20.8"
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: ${{env.GO_VERSION}}
# Test & coverage report creation
- name: Test & coverage report creation
run: go test -cover -mod=readonly ./x/...