Skip to content

Feat: Validate from Export #18

Feat: Validate from Export

Feat: Validate from Export #18

Workflow file for this run

name: build
on:
push:
branches:
- main
paths-ignore:
- "*.md"
pull_request:
branches:
- main
paths-ignore:
- "*.md"
jobs:
build:
runs-on: ubuntu-latest
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
permissions: read-all
env:
CI: true
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b #v4.1.4
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 #v6.0.0
with:
go-version-file: ./go.mod
- run: go get -v -t -d ./...
- name: Run Build
run: go build -v .
- name: Run Tests
run: go test -v ./...