Skip to content

docs: Include the installation sources to the pre-commit script #16

docs: Include the installation sources to the pre-commit script

docs: Include the installation sources to the pre-commit script #16

Workflow file for this run

name: Go package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
- name: Test
run: go test $(go list -m)
- name: Build
run: go build db_to_d2
- name: Upload built version
uses: actions/upload-artifact@v3
with:
name: package-build
path: db_to_d2