Version 0.2.0. #24
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: Pull Request Tests | |
on: [pull_request] | |
jobs: | |
######### | |
# Tests # | |
######### | |
tests: | |
name: Tests | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 20 | |
steps: | |
- name: Code Checkout | |
uses: actions/checkout@v4 | |
- name: Flutter Environment | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
cache: true | |
- name: curl version | |
timeout-minutes: 1 | |
run: curl -V | |
- name: Dart Pub Get | |
timeout-minutes: 3 | |
run: dart pub get | |
- name: Dart Analyze | |
timeout-minutes: 3 | |
run: dart analyze --fatal-infos | |
- name: Dart Test | |
run: dart test |