diff --git a/.github/workflows/openim-ci.yml b/.github/workflows/openim-ci.yml index 2e2db4ee2..bd8c70859 100644 --- a/.github/workflows/openim-ci.yml +++ b/.github/workflows/openim-ci.yml @@ -95,20 +95,25 @@ jobs: # - name: Set up Docker Buildx # uses: docker/setup-buildx-action@v1 -# lint: -# runs-on: ubuntu-20.04 -# steps: -# - name: Checkout -# uses: actions/checkout@v3 -# with: -# fetch-depth: 0 - -# - name: Set up Go -# uses: actions/setup-go@v3 -# with: -# go-version: ${{ env.GO_VERSION }} - -# - name: golangci-lint -# uses: golangci/golangci-lint-action@v3 -# with: -# version: ${{ env.GOLANGCI_VERSION }} \ No newline at end of file + openim-start: + name: Teat OpenIM make install start on ${{ matrix.os }} + runs-on: ${{ matrix.os }} + environment: + name: openim + strategy: + matrix: + go_version: ["1.20"] + os: ["ubuntu-latest","macos-latest","windows-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 OpenIM make install start + run: | + make install \ No newline at end of file