Merge pull request #4 from muzzammilshahid/client #31
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: WAMP Dart | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Dart | |
uses: dart-lang/setup-dart@v1 | |
with: | |
sdk: 3.3.0 | |
- name: Install dependencies | |
run: make install | |
- name: Verify formatting | |
run: make check-format | |
- name: Check lint | |
run: make lint | |
- name: Run tests | |
run: make tests |