Skip to content

Merge pull request #23 from DutchCodingCompany/chore/update_dependencies #30

Merge pull request #23 from DutchCodingCompany/chore/update_dependencies

Merge pull request #23 from DutchCodingCompany/chore/update_dependencies #30

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Dart
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dart-lang/setup-dart@v1
- name: Install dependencies
run: dart pub get
- name: Check code format
run: dart format . -o none --set-exit-if-changed
- name: Analyze project source
run: dart analyze --fatal-infos .
- name: Run tests
run: dart test