Moved from List to Set in Subscribe EventEngine. (#134) #217
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
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: | |
group: Default Larger Runners | |
labels: ubuntu-latest-m | |
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 | |
build-validation: | |
name: Validate build | |
runs-on: | |
group: Default Larger Runners | |
labels: ubuntu-latest-m | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Validate clean build | |
run: ./gradlew build | |
- 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: | |
group: Default Larger Runners | |
labels: ubuntu-latest-m | |
needs: [pubnub-yml, build-validation] | |
steps: | |
- name: Validations summary | |
run: echo -e "\033[38;2;95;215;0m\033[1mAll validations passed" |