Add excalidraw plug for diagram rendering (#1543) #2500
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: Test | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: Setup Deno | |
uses: denoland/setup-deno@v2 | |
with: | |
deno-version: v2.5.0 | |
- name: Run build | |
run: deno task build | |
- name: Run checks | |
run: deno task checks | |
test-go: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup repo | |
uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.25" | |
- name: Verify Go installation | |
run: go version | |
- name: Verify Go modules | |
run: go mod verify | |
- name: Download dependencies | |
run: go mod download | |
- name: Run Go tests | |
run: go test ./server_go -v | |
- name: Run Go tests with coverage | |
run: go test ./server_go -coverprofile=coverage.out | |
- name: Display test coverage | |
run: go tool cover -func=coverage.out |