Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: origanization #2

Closed
wants to merge 67 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
67 commits
Select commit Hold shift + click to select a range
760179e
feat: origanization
Jun 26, 2023
c8383ad
feat: get origanization
Jun 26, 2023
edfb1a2
feat: get origanization
Jun 26, 2023
4564651
feat: org design mod
cubxxw Jun 26, 2023
8dd4e45
feat: fix origin design
cubxxw Jun 26, 2023
a845622
feat:team_test
Jun 26, 2023
4fb637b
feat:team_test
Jun 27, 2023
3da0f42
feat:team_test
Jun 28, 2023
b2ab411
feat:team_test
Jun 28, 2023
7a2c775
feat:team_test
Jun 28, 2023
9ba6cd8
feat:team_test
Jun 29, 2023
b24a56f
feat:team_test
Jun 29, 2023
b19a20a
feat:team_test
Jun 29, 2023
1a06d10
feat:team_test
Jun 29, 2023
446ed37
config
withchao Jun 29, 2023
eae8a38
Update README.md
skiffer-git Jun 29, 2023
350f14b
update go mod
withchao Jun 30, 2023
fe51d33
Merge remote-tracking branch 'origin/main'
withchao Jun 30, 2023
0ecce5b
config optimization
withchao Jun 30, 2023
404134c
config optimization
withchao Jun 30, 2023
571563c
feat: add makefile
cubxxw Jun 30, 2023
7707f9b
feat: add the necessary design
cubxxw Jun 30, 2023
a8cc556
update pkg
withchao Jun 30, 2023
8e3213e
feat: add makefile
cubxxw Jun 30, 2023
9e8bf54
feat: add your own design
cubxxw Jun 30, 2023
338ad5e
feat: design makefile
cubxxw Jun 30, 2023
22026f3
feat: copyright design
cubxxw Jun 30, 2023
4bfec73
feat: initialization
cubxxw Jun 30, 2023
0184c25
feat: add dockerfile supper
cubxxw Jun 30, 2023
5d4a5e9
update pkg
withchao Jun 30, 2023
6f2fd91
Merge remote-tracking branch 'origin/main'
withchao Jun 30, 2023
f528997
update pkg
withchao Jun 30, 2023
803ce89
Merge remote-tracking branch 'origin/main'
withchao Jun 30, 2023
3632af4
config
withchao Jun 30, 2023
7b28acb
feat: docker compose logs unified directory
cubxxw Jun 30, 2023
1ce5530
config
withchao Jun 30, 2023
b7c22ea
Merge remote-tracking branch 'origin/main'
withchao Jun 30, 2023
e24650c
feat: add dockerfile supper
cubxxw Jun 30, 2023
05190fe
config
withchao Jun 30, 2023
3b7db10
admin
withchao Jun 30, 2023
6c1c409
Merge remote-tracking branch 'origin/main'
withchao Jun 30, 2023
2d60884
admin init
withchao Jun 30, 2023
7af3eb9
Merge remote-tracking branch 'origin/main'
withchao Jun 30, 2023
58d48a5
admin filed
withchao Jun 30, 2023
52fc71e
admin filed
withchao Jun 30, 2023
97a36a9
feat: make lint check
cubxxw Jun 30, 2023
f9ad44c
feat: add chat
cubxxw Jun 30, 2023
8614042
fix: dockerfile
cubxxw Jul 2, 2023
1cfba8d
fix: fix scripts
cubxxw Jul 2, 2023
6747a23
feat: add scripts
cubxxw Jul 2, 2023
de6eb2a
Update deploy.Dockerfile
skiffer-git Jul 2, 2023
a355940
print config
withchao Jul 2, 2023
e29d9c3
retry get zk config
withchao Jul 2, 2023
c0d1773
update go mod
withchao Jul 2, 2023
f06a202
fix grpc conn init duplicated
wangchuxiao-dev Jul 2, 2023
b626d50
global_recv_msg_opt
withchao Jul 3, 2023
8cc27a4
Merge branch 'main' into team_test
withchao Jul 5, 2023
9d4f96d
merge
withchao Jul 5, 2023
5acc942
merge
withchao Jul 5, 2023
c92a1cb
merge
withchao Jul 5, 2023
1867adb
merge
withchao Jul 5, 2023
99c4bff
api
withchao Jul 5, 2023
cbe0b25
organization
withchao Jul 5, 2023
dbfe69b
organization
withchao Jul 5, 2023
fca96c5
organization
withchao Jul 5, 2023
f032138
update
withchao Jul 5, 2023
9d6ab74
Merge branch 'main' into team_test
withchao Jul 5, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 69 additions & 0 deletions .github/workflows/chat.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
name: Openim-chat CI

on:
push:
pull_request:

jobs:
openim-chat:
name: Test with go ${{ matrix.go_version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
environment:
name: openim

strategy:
matrix:
go_version: ["1.20"]
os: [ubuntu-latest]

steps:
- name: Set up Go ${{ matrix.go_version }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go_version }}
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v2

- name: Run go modules tidy
run: |
make tidy

- name: Generate all necessary files, such as error code files
run: |
make generate

# - name: Check syntax and styling of go sources
# run: |
# set -e
# make lint

# - name: Run unit test and get test coverage
# run: |
# make cover

- name: Build source code for host platform
run: |
# make build # skip build for now

- name: Collect Test Coverage File
uses: actions/[email protected]
with:
name: main-output
path: _output/tmp/coverage.out

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1

# skip for now
# - name: Login to DockerHub
# uses: docker/login-action@v1
# with:
# username: ${{ env.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}

# skip for now
- name: Build docker images for host arch and push images to registry
run: |
make docker-push
Loading
Loading