From dedf489cc168ec46e22b72fd844a0e706619c9ad Mon Sep 17 00:00:00 2001 From: Valery Piashchynski Date: Thu, 15 Feb 2024 15:50:08 +0100 Subject: [PATCH] chore: update CI Signed-off-by: Valery Piashchynski --- .github/workflows/linters.yml | 2 +- .github/workflows/linux.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 574de1f..6df402a 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -18,6 +18,6 @@ jobs: - name: Run linter uses: golangci/golangci-lint-action@v4.0.0 # Action page: with: - version: v1.54 # without patch version + version: v1.57 # without patch version only-new-issues: false # show only new issues if it's a pull request args: --timeout=10m --build-tags=race diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 978656b..2476a52 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -17,8 +17,8 @@ jobs: timeout-minutes: 60 strategy: matrix: - php: [ "8.2" ] - go: [ "1.21" ] + php: [ "8.3" ] + go: [ "stable" ] os: [ "ubuntu-latest" ] steps: - name: Set up Go ${{ matrix.go }} @@ -44,7 +44,7 @@ jobs: cd tests mkdir ./coverage-ci - go test -timeout 20m -v -race -cover -tags=debug -failfast -coverpkg=$(cat pkgs.txt) -coverprofile=./coverage-ci/lock.out -covermode=atomic ./... + go test -timeout 20m -v -race -cover -tags=debug -failfast -coverpkg=$(cat pkgs.txt) -coverprofile=./coverage-ci/lock.out -covermode=atomic lock_test.go rpc.go - name: Archive code coverage results uses: actions/upload-artifact@v4