Merge pull request #11 Add README file #4
This file contains hidden or 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: Git Explorer CI | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: "3.29.0" | |
channel: "stable" | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Run build_runner | |
run: dart run build_runner build --delete-conflicting-outputs | |
- name: Analyze code | |
run: flutter analyze | |
- name: Run unit tests | |
run: flutter test |