[PBE-5292] fix: update the readme to include the shadowed version #173
Workflow file for this run
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: Build | |
on: [pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
ci: | |
name: 🧪 Test & lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Commit message lint | |
uses: wagoid/commitlint-github-action@v4 | |
- name: Test | |
env: | |
STREAM_KEY: ${{ secrets.STREAM_KEY }} | |
STREAM_SECRET: ${{ secrets.STREAM_SECRET }} | |
run: | | |
./gradlew spotlessCheck --no-daemon | |
./gradlew jacocoTestReport --no-daemon |