allow the 3.3.x SDK in build_web_compilers and build_modules #434
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
name: Community tests | |
on: | |
pull_request: | |
env: | |
PUB_ENVIRONMENT: bot.github | |
jobs: | |
drift: | |
# Tests maintained by oss@simonbinder.eu | |
name: "Tests for pkg:drift" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f | |
with: | |
sdk: dev | |
- uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 | |
- run: dart pub get | |
working-directory: tool | |
- uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 | |
with: | |
repository: simolus3/drift | |
ref: develop | |
path: client_tests/drift | |
- run: |- | |
cat << DRIFTDEPS >> client_tests/drift/drift/pubspec.yaml | |
dependency_overrides: | |
drift_dev: | |
path: ../drift_dev | |
sqlparser: | |
path: ../sqlparser | |
DRIFTDEPS | |
dart run tool/bin/patch_build_dependencies.dart client_tests/drift/drift | |
cd client_tests/drift/drift | |
git add pubspec.yaml | |
- run: dart test --preset build_community_tests | |
name: Drift community tests | |
working-directory: client_tests/drift/drift |