Skip to content

Feat/upgrade app v2 #170

Feat/upgrade app v2

Feat/upgrade app v2 #170

Workflow file for this run

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/...