chore(deps): update dependency go to 1.25 #87
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |