Commit 3019ab3
Changed files (1)
.github
workflows
.github/workflows/go-test.yaml
@@ -2,7 +2,7 @@ name: Go Test
on:
pull_request:
paths-ignore:
- - '.github/**'
+ - ".github/**"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
@@ -13,14 +13,10 @@ jobs:
contents: write
steps:
- uses: actions/checkout@v7
- - name: Set up Go
+ - name: Setup Go
uses: actions/setup-go@v7
with:
- go-version: stable
- - name: Setup cross toolchain
- run: cargo install cross
- - name: Build ffi
- run: ./scripts/build-static.sh
+ go-version-file: go.mod
- name: Install dependencies
run: go get .
- name: Build