Skip to content

Update raw-commands.yaml #3

Update raw-commands.yaml

Update raw-commands.yaml #3

Workflow file for this run

name: Build
on:
- push
- pull_request
- workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.21.0
- name: Get dependencies
run: |
go install -v ./...
- name: Pre Commit
run: make pre-commit
- name: Build
run: make build