Skip to content

Migrate store package #5

Migrate store package

Migrate store package #5

Workflow file for this run

name: "Build & Test"
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 #pin v4.1.6
- name: Set up Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 #pin v5.0.1
with:
go-version: "stable"
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...