Merge pull request #108 from muzzammilshahid/adapt-to-latest-wampprot… #276
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: Wampproto Dart CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
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: build wampproto-cli | |
run: make build-wampproto | |
- name: Run tests | |
run: make tests |