Skip to content

v1.2.0

v1.2.0 #14

Workflow file for this run

name: CI/CD
on:
push:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true
jobs:
analyse-test:
name: "Analyse & Test"
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Dart Environment
uses: dart-lang/[email protected]
- name: Get (0!) Dependencies
run: dart pub get
- name: Check Formatting
run: dart format --output=none --set-exit-if-changed .
- name: Check Lints
run: dart analyze --fatal-infos --fatal-warnings
- name: Run Tests
run: dart test -r expanded