Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added popover scaffold (Resolves #19) #20

Merged
merged 5 commits into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 15 additions & 4 deletions .github/workflows/pr_validation.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Run analysis and tests for pull requests
on: [pull_request]
jobs:
test:
analysis:
runs-on: ubuntu-latest
steps:
# Checkout the PR branch
Expand All @@ -18,6 +18,20 @@ jobs:
# Static analysis
- run: flutter analyze

test:
runs-on: ubuntu-latest
steps:
# Checkout the PR branch
- uses: actions/checkout@v3

# Setup Flutter environment
- uses: subosito/flutter-action@v2
with:
channel: "stable"

# Download all the packages that the app uses
- run: flutter pub get

# Run all tests
- run: flutter test

Expand All @@ -36,8 +50,5 @@ jobs:
# Download all the packages that the app uses
- run: flutter pub get

# Static analysis
- run: flutter analyze

# Run all tests
- run: flutter test test_goldens
2 changes: 1 addition & 1 deletion example/analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ linter:
# `// ignore_for_file: name_of_lint` syntax on the line or in the file
# producing the lint.
rules:
# avoid_print: false # Uncomment to disable the `avoid_print` rule
avoid_print: false # Uncomment to disable the `avoid_print` rule
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule

# Additional information about this file can be found at
Expand Down
Loading
Loading