Add new runtime function to get a list of user's friend status #428
Workflow file for this run
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
# every push to a branch: build binary | |
name: Build | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
build_binary: | |
name: Build nakama binary | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "stable" | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build binary | |
run: go build -trimpath -mod=vendor |