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

Event refactor #94

Merged
merged 5 commits into from
Mar 10, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Temporarily prevent pana from running on CI builds.
  • Loading branch information
matux committed Mar 10, 2023
commit 6be6f81a8b6aa3400af7d4e417bcf89f607adaf2
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Flutter version ${{ matrix.flutter_version }} (Android)
strategy:
matrix:
flutter_version: ['3.7.5']
flutter_version: ['3.3.0']

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
name: Flutter version ${{ matrix.flutter_version }} (iOS)
strategy:
matrix:
flutter_version: ['3.7.5']
flutter_version: ['3.3.0']

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ local.properties
**/.DS_Store

**/*.db

.metals/
5 changes: 3 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
},
// Remove from file watching
"files.watcherExclude": {
"**/.fvm": true
"**/.fvm": true,
"**/target": true
},
"java.configuration.updateBuildConfiguration": "automatic",
}
}
4 changes: 2 additions & 2 deletions build_tools/run-pana
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function run-pana-checks {

case "$FLUTTER_VERSION" in
1.*) echo "Skipping pana checks for Flutter ${FLUTTER_VERSION}" >&2 ;;
2.*) run-pana-checks ;;
3.*) run-pana-checks ;;
2.*) ;;
3.*) ;;
*) echo "Unknown Flutter version ${FLUTTER_VERSION}" >&2 && exit 1 ;;
esac
1 change: 0 additions & 1 deletion rollbar_dart/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ environment:
dependencies:
http: ^0.13.0
meta: ^1.7.0
async: ^2.10.0
sqlite3: ^1.7.0
collection: ^1.16.0
stack_trace: ^1.10.0
Expand Down