Skip to content

Add basic documentaion #187

Add basic documentaion

Add basic documentaion #187

Workflow file for this run

name: WAMP Dart
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: Run tests
run: make tests