Skip to content

🩹 修改优化嵌入图片之前检查图片文件是否存在 #53

🩹 修改优化嵌入图片之前检查图片文件是否存在

🩹 修改优化嵌入图片之前检查图片文件是否存在 #53

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Test
runs-on: ${{ matrix.OS }}
strategy:
matrix:
OS: [ubuntu-latest, windows-latest]
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.17
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Test
run: go test ./... -v