Files
gglm/.github/workflows/test-gglm.yml
2024-05-04 22:44:48 +04:00

22 lines
429 B
YAML
Executable File

name: test-gglm
on:
create:
workflow_dispatch:
jobs:
test-gglm:
runs-on: [windows-latest, macos-latest, ubuntu-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: nmage
run: cd gglm && go test ./... -v