This repository has been archived by the owner on Oct 24, 2024. It is now read-only.
Add default to each networks #145
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: Tests | |
on: | |
pull_request: | |
branches: | |
- "**" | |
push: | |
branches: | |
- "main" | |
workflow_dispatch: | |
env: | |
GO_VERSION: "1.21.3" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
go: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: 🐿 Setup Golang | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{env.GO_VERSION}} | |
- name: Display go version | |
run: go version | |
- name: 🧪 Test | |
run: go test -v ./x/... |