Skip to content

internal/lume: add end to end build test #338

internal/lume: add end to end build test

internal/lume: add end to end build test #338

Workflow file for this run

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.22'
- run: |
curl -L -o dhall-linux.tar.bz2 https://github.com/dhall-lang/dhall-haskell/releases/download/1.42.0/dhall-json-1.7.12-x86_64-linux.tar.bz2
tar -xvjf dhall-linux.tar.bz2
mv bin/* /usr/local/bin
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- uses: typst-community/setup-typst@v3
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...