Skip to content

Commit

Permalink
Merge pull request #4 from AgoraIO-Community/add-chat-token
Browse files Browse the repository at this point in the history
πŸ’¬ Chat token builder
πŸš€ GitHub Actions testing
  • Loading branch information
maxxfrazer authored Jul 11, 2023
2 parents e82ca31 + 4bdbaaa commit 285edad
Show file tree
Hide file tree
Showing 9 changed files with 944 additions and 644 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/go-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Go Test

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '^1.20'
- name: Build and Test
run: |
go get -v -t -d ./...
go build -v ./...
go test -cover $(go list ./... | grep -v examples)
Loading

0 comments on commit 285edad

Please sign in to comment.