fix: manually load font file or fonts dirs when use resvg-go #61
This file contains 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: build | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
env: | |
GO111MODULE: "on" | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ~1.21 | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Download Go modules | |
run: go mod download | |
- name: Build | |
run: go build -v ./... | |
#- name: Test | |
# run: go test -v -cover -timeout=30s ./... |