Tests for hex colors #2
Workflow file for this run
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
on: | |
push: | |
branches: [ "**" ] | |
pull_request: | |
branches: [ "**" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
flutter-version-file: pubspec.yaml | |
- run: flutter --version | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Example .env | |
run: cp example.env .env | |
- name: generate files | |
run: dart run build_runner build --delete-conflicting-outputs | |
- name: Hex Color Converters Test | |
run: flutter test test/hex_color_converters_test.dart |