Skip to content

add custom function #26

add custom function

add custom function #26

Workflow file for this run

name: Dart Build
on:
push:
branches:
- "master"
pull_request:
env:
DART_SDK_VERSION: 3.4.0
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dart-lang/setup-dart@v1
with:
sdk: ${{ env.DART_SDK_VERSION }}
- name: Install dependencies
run: dart pub get
- name: Verify formatting
run: dart format --output=none --set-exit-if-changed .
- name: Analyze project source
run: dart analyze
- name: Run tests
run: dart test