diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index eb19b680..3b2c833a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,6 +1,6 @@ name: build on: - push: + push: branches: - master jobs: @@ -12,20 +12,36 @@ jobs: uses: actions/setup-go@v2 with: go-version: 1.16 - - name: checkout - uses: actions/checkout@v2 - name: cache uses: actions/cache@v2 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} restore-keys: ${{ runner.os }}-go- - - name: deps + - name: sdk checkout + uses: actions/checkout@v2 + - name: sdk deps run: go get -v -t -d ./... - - name: test + - name: sdk test env: INTEGRATION_TESTS: yes run: go test -mod readonly -v ./... + - name: tests checkout + uses: actions/checkout@v2 + with: + repository: unistack-org/micro-tests + ref: refs/heads/master + path: micro-tests + fetch-depth: 1 + - name: tests deps + run: | + cd micro-tests + go mod edit -replace="github.com/unistack-org/micro/v3=../" + go get -v -t -d ./... + - name: tests test + env: + INTEGRATION_TESTS: yes + run: cd micro-tests && go test -mod readonly -v ./... lint: name: lint runs-on: ubuntu-latest @@ -37,7 +53,7 @@ jobs: continue-on-error: true with: # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. - version: v1.30 + version: v1.39 # Optional: working directory, useful for monorepos # working-directory: somedir # Optional: golangci-lint command line arguments. diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index fa4081ef..f4f21528 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -12,10 +12,6 @@ name: "CodeQL" on: - workflow_run: - workflows: ["prbuild"] - types: - - completed push: branches: [ master ] pull_request: diff --git a/.github/workflows/dependabot-automerge.yml b/.github/workflows/dependabot-automerge.yml index a4dfa48d..b9628e74 100644 --- a/.github/workflows/dependabot-automerge.yml +++ b/.github/workflows/dependabot-automerge.yml @@ -15,7 +15,6 @@ jobs: runs-on: ubuntu-latest # Contains workaround to execute if dependabot updates the PR by checking for the base branch in the linked PR # The the github.event.workflow_run.event value is 'push' and not 'pull_request' - # dont work with multiple workflows when last returns success if: >- github.event.workflow_run.conclusion == 'success' && github.actor == 'dependabot[bot]' @@ -24,8 +23,6 @@ jobs: && (github.event.workflow_run.event == 'pull_request' || (github.event.workflow_run.event == 'push' && github.event.workflow_run.pull_requests[0].base.ref == github.event.repository.default_branch )) steps: - - name: Wait workflows success - uses: ahmadnassri/action-workflow-run-wait@v1 - name: Approve Changes and Merge changes if label 'dependencies' is set uses: actions/github-script@v4 with: diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 545baf2b..5ca11ff9 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -12,20 +12,36 @@ jobs: uses: actions/setup-go@v2 with: go-version: 1.16 - - name: checkout - uses: actions/checkout@v2 - name: cache uses: actions/cache@v2 with: - path: ~/go/pkg/mod + path: ~/go/pkg key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} restore-keys: ${{ runner.os }}-go- - - name: deps + - name: sdk checkout + uses: actions/checkout@v2 + - name: sdk deps run: go get -v -t -d ./... - - name: test + - name: sdk test env: INTEGRATION_TESTS: yes run: go test -mod readonly -v ./... + - name: tests checkout + uses: actions/checkout@v2 + with: + repository: unistack-org/micro-tests + ref: refs/heads/master + path: micro-tests + fetch-depth: 1 + - name: tests deps + run: | + cd micro-tests + go mod edit -replace="github.com/unistack-org/micro/v3=../" + go get -v -t -d ./... + - name: tests test + env: + INTEGRATION_TESTS: yes + run: cd micro-tests && go test -mod readonly -v ./... lint: name: lint runs-on: ubuntu-latest @@ -37,7 +53,7 @@ jobs: continue-on-error: true with: # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. - version: v1.30 + version: v1.39 # Optional: working directory, useful for monorepos # working-directory: somedir # Optional: golangci-lint command line arguments.