Skip to content

build: support linux/arm64 #13

build: support linux/arm64

build: support linux/arm64 #13

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read # for checkout
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.22.x"]
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.22.x"
- name: Install dependencies
run: go work sync
- name: Test with the Go CLI
run: go test ./internal/chronicle/...