diff --git a/.github/workflows/linux_bak.yml b/.github/workflows/linux_bak.yml deleted file mode 100644 index 34519802..00000000 --- a/.github/workflows/linux_bak.yml +++ /dev/null @@ -1,52 +0,0 @@ -name: Linux - -on: - push: - branches: - - master - - stable - tags-ignore: - - '**' - paths-ignore: - - '**.md' - pull_request: - paths-ignore: - - '**.md' - -jobs: - golang: - name: Build (Go ${{ matrix.go }}, OS ${{matrix.os}}) - runs-on: ${{ matrix.os }} - timeout-minutes: 60 - strategy: - fail-fast: true - matrix: - go: [ stable ] - os: [ ubuntu-latest ] - steps: - - name: Set up Go ${{ matrix.go }} - uses: actions/setup-go@v4 # action page: - with: - go-version: ${{ matrix.go }} - - - name: Check out code - uses: actions/checkout@v4 - - - name: Init Go modules Cache # Docs: - uses: actions/cache@v3 - with: - path: ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: ${{ runner.os }}-go- - - - name: Install Go dependencies - run: go mod tidy && go mod download - - - name: Golang tests - run: make test_coverage - - - uses: codecov/codecov-action@v3.1.4 # Docs: - with: - token: ${{ secrets.CODECOV_TOKEN }} - file: ./coverage-ci/summary.txt - fail_ci_if_error: false diff --git a/Makefile b/Makefile deleted file mode 100644 index 0f91ae28..00000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Run tests temporal server -start-docker-compose: - docker-compose -f tests/docker-compose.yml up -d - -stop-docker-compose: - docker-compose -f tests/docker-compose.yml down - -# Installs all needed composer dependencies -install-dependencies: - composer --working-dir=./tests/php_test_files install - -# Run all tests and code-style checks -test: - go test -v -race -cover -tags=debug -failfast ./... - -test_coverage: - rm -rf coverage-ci - mkdir ./coverage-ci - go test -v -race -cover -tags=debug -failfast -coverpkg=./... -coverprofile=./coverage-ci/temporal.out -covermode=atomic ./... - echo 'mode: atomic' > ./coverage-ci/summary.txt - tail -q -n +2 ./coverage-ci/*.out >> ./coverage-ci/summary.txt \ No newline at end of file diff --git a/README.md b/README.md index 6fb5bfff..338ad7ad 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Linux](https://github.com/temporalio/roadrunner-temporal/workflows/Linux/badge.svg)](https://github.com/temporalio/roadrunner-temporal/actions) +[![Linux](https://github.com/temporalio/roadrunner-temporal/workflows/rrtemporal/badge.svg)](https://github.com/temporalio/roadrunner-temporal/actions) [![Discourse](https://img.shields.io/static/v1?label=Discourse&message=Get%20Help&color=informational)](https://community.temporal.io) @@ -7,7 +7,7 @@ The repository contains a number of plugins which enable workflow and activity p supervisor, load-balancer is based on [RoadRunner PHP Application Server](https://roadrunner.dev). ## Installation -Temporal is official plugin of RoadRunner and available out of the box in [RoadRunner 2.0](https://github.com/roadrunner-server/roadrunner). +Temporal is an official plugin of RoadRunner and available out-of-the-box in >= [RoadRunner 2023.0](https://github.com/roadrunner-server/roadrunner). Read more about application server installation [here](https://roadrunner.dev/docs/intro-install).