Skip to content

feat: Add support for datetime type #4

feat: Add support for datetime type

feat: Add support for datetime type #4

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Cache Go modules
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Download dependencies
run: go mod download
- name: Build binary
run: make build
- name: Archive production artifacts
if: success()
uses: actions/upload-artifact@v4
with:
name: go-binaries
path: |
./your_binary_name # replace with actual built file(s)