Skip to content

chore(deps): update dependency go to 1.25 #87

chore(deps): update dependency go to 1.25

chore(deps): update dependency go to 1.25 #87

Workflow file for this run

name: Run Tests
on:
workflow_dispatch:
pull_request:
branches:
- master
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.25'
env:
CGO_ENABLED: 0
- name: Install dependencies
run: go mod download
- name: Run tests
run: go test -v ./...
- name: Build test binary
run: go build -v -o testbin && ./testbin
- name: Test Gliffy conversion
run: ./testbin gliffy -i test/data/test_input.excalidraw -o /tmp/test_output.gliffy
- name: Test Mermaid conversion
run: ./testbin mermaid -i test/data/test_input_mermaid.excalidraw -o /tmp/test_output.mermaid
- name: Test Homebrew test fixture
run: ./testbin gliffy -i test/data/test_homebrew.excalidraw -o /tmp/test_homebrew_output.gliffy