Skip to content

math jax works

math jax works #13

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'
- name: Set up Go Sqlite3
run: go get .
- name: Build
run: go build -v > logs
- name: Upload Go Build Result
uses: actions/upload-artifact@v4
with:
name: 'logs'
path: 'logs'