Validation for fix(embed): escape dollar symbol of JSON string literal #21
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: PR Validation | |
run-name: Validation for ${{ github.event.pull_request.title }} | |
on: | |
pull_request: | |
branches: [master] | |
jobs: | |
validation: | |
name: PR validation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@v1 | |
with: | |
sdk: "stable" | |
- name: Install pana | |
run: dart pub global activate pana | |
- name: Install cargo-make | |
uses: actions-rs/cargo@v1 | |
with: | |
command: install | |
args: --debug cargo-make | |
- name: Validate packages | |
uses: actions-rs/cargo@v1 | |
with: | |
command: make | |
args: validate |