-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feature/add-space-id-and-message-type
- Loading branch information
Showing
8 changed files
with
140 additions
and
172 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
* @seba-aln @phairow @MikeDobrzan @marcin-cebo @mohitpubnub | ||
.github/* @parfeon @seba-aln @phairow @MikeDobrzan @marcin-cebo @mohitpubnub | ||
* @seba-aln @MikeDobrzan @marcin-cebo @mohitpubnub | ||
.github/* @parfeon @seba-aln @MikeDobrzan @marcin-cebo @mohitpubnub | ||
README.md @techwritermat @kazydek |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
name: Tests | ||
|
||
on: | ||
push: | ||
workflow_dispatch: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
tests: | ||
name: Integration and Unit tests | ||
runs-on: ubuntu-latest | ||
strategy: | ||
max-parallel: 1 | ||
fail-fast: true | ||
matrix: | ||
php: [5.6, 7.0, 7.1, 7.2, 7.3, 7.4] | ||
env: | ||
PUBLISH_KEY: ${{ secrets.PUBLISH_KEY }} | ||
SUBSCRIBE_KEY: ${{ secrets.SUBSCRIBE_KEY }} | ||
SECRET_KEY: ${{ secrets.SECRET_KEY }} | ||
PUBLISH_PAM_KEY: ${{ secrets.PUBLISH_PAM_KEY }} | ||
SUBSCRIBE_PAM_KEY: ${{ secrets.SUBSCRIBE_PAM_KEY }} | ||
SECRET_PAM_KEY: ${{ secrets.SECRET_PAM_KEY }} | ||
UUID_MOCK: "test-user" | ||
steps: | ||
- name: Checkout project | ||
uses: actions/checkout@v3 | ||
- name: Checkout actions | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: pubnub/client-engineering-deployment-tools | ||
ref: v1 | ||
token: ${{ secrets.GH_TOKEN }} | ||
path: .github/.release/actions | ||
- name: Determine composer cache directory | ||
id: composer-cache-dir | ||
run: echo "dir=$(composer config cache-dir)" >> $GITHUB_OUTPUT | ||
- name: Cache Composer | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
"${{ steps.composer-cache-dir.outputs.dir }}" | ||
${{ github.workspace }}/vendor | ||
key: ${{ runner.os }}-composer-${{ matrix.php }}-${{ hashFiles('**/composer.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-composer- | ||
- name: Setup PHP ${{ matrix.php }} | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php }} | ||
tools: phpunit | ||
coverage: none | ||
- name: Setup dependencies | ||
run: | | ||
composer self-update && composer --version | ||
composer install --prefer-dist | ||
- name: Run unit tests | ||
run: vendor/bin/phpunit --verbose | ||
- name: Cancel workflow runs for commit on error | ||
if: failure() | ||
uses: ./.github/.release/actions/actions/utils/fast-jobs-failure | ||
all-tests: | ||
name: Tests | ||
runs-on: ubuntu-latest | ||
needs: [tests] | ||
steps: | ||
- name: Tests summary | ||
run: echo -e "\033[38;2;95;215;0m\033[1mAll tests successfully passed" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Validations | ||
|
||
on: | ||
push: | ||
workflow_dispatch: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
pubnub-yml: | ||
name: "Validate .pubnub.yml" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout project | ||
uses: actions/checkout@v3 | ||
- name: Checkout validator action | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: pubnub/client-engineering-deployment-tools | ||
ref: v1 | ||
token: ${{ secrets.GH_TOKEN }} | ||
path: .github/.release/actions | ||
- name: "Run '.pubnub.yml' file validation" | ||
uses: ./.github/.release/actions/actions/validators/pubnub-yml | ||
with: | ||
token: ${{ secrets.GH_TOKEN }} | ||
- name: Cancel workflow runs for commit on error | ||
if: failure() | ||
uses: ./.github/.release/actions/actions/utils/fast-jobs-failure | ||
all-validations: | ||
name: Validations | ||
runs-on: ubuntu-latest | ||
needs: [pubnub-yml] | ||
steps: | ||
- name: Validations summary | ||
run: echo -e "\033[38;2;95;215;0m\033[1mAll validations passed" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.