mirror of
https://github.com/bloeys/gglm.git
synced 2025-12-29 13:38:20 +00:00
22 lines
396 B
YAML
Executable File
22 lines
396 B
YAML
Executable File
name: test-gglm
|
|
|
|
on:
|
|
create:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test-gglm-windows:
|
|
runs-on: [windows-latest]
|
|
steps:
|
|
- name: Install golang
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: ">=1.17"
|
|
|
|
- name: Clone gglm
|
|
run: git clone https://github.com/bloeys/gglm
|
|
|
|
- name: Test gglm
|
|
working-directory: gglm
|
|
run: go test ./... -v
|