cicd: add ci workflow

Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com>
pull/561/head
Xinwei Xiong(cubxxw-openim) 2 years ago
parent 70c0417b77
commit f6b891c014
No known key found for this signature in database
GPG Key ID: 1BAD6F395338EFDE

@ -95,20 +95,25 @@ jobs:
# - name: Set up Docker Buildx # - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v1 # uses: docker/setup-buildx-action@v1
# lint: openim-start:
# runs-on: ubuntu-20.04 name: Teat OpenIM make install start on ${{ matrix.os }}
# steps: runs-on: ${{ matrix.os }}
# - name: Checkout environment:
# uses: actions/checkout@v3 name: openim
# with: strategy:
# fetch-depth: 0 matrix:
go_version: ["1.20"]
# - name: Set up Go os: ["ubuntu-latest","macos-latest","windows-latest"]
# uses: actions/setup-go@v3 steps:
# with: - name: Set up Go ${{ matrix.go_version }}
# go-version: ${{ env.GO_VERSION }} uses: actions/setup-go@v2
with:
# - name: golangci-lint go-version: ${{ matrix.go_version }}
# uses: golangci/golangci-lint-action@v3 id: go
# with:
# version: ${{ env.GOLANGCI_VERSION }} - name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Run OpenIM make install start
run: |
make install
Loading…
Cancel
Save