Skip to content

chore(release): upload assets to artifact #24

chore(release): upload assets to artifact

chore(release): upload assets to artifact #24

name: Static Analysis
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
name: Build and Testing
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version-file: "go.mod"
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...