build(deps-dev): bump aiohttp from 3.8.4 to 3.9.2 in /examples/wallet_app/devnet #285
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: CI builder | |
on: | |
pull_request: | |
env: | |
WORK_DIR: packages/starknet_builder | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: dart-lang/[email protected] | |
with: | |
sdk: stable | |
- id: install | |
name: Install dependencies | |
run: dart pub get | |
working-directory: ${{ env.WORK_DIR }} | |
- name: Check formatting | |
run: dart format --output=none --set-exit-if-changed . | |
working-directory: ${{ env.WORK_DIR }} | |
- name: Analyze code | |
run: dart analyze --fatal-infos | |
if: always() && steps.install.outcome == 'success' | |
working-directory: ${{ env.WORK_DIR }} | |
test: | |
defaults: | |
run: | |
working-directory: ${{ env.WORK_DIR }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: dart-lang/[email protected] | |
with: | |
sdk: stable | |
- id: install | |
name: Install dependencies | |
run: dart pub get | |
- name: Run build_runner | |
run: dart run build_runner build --delete-conflicting-outputs | |
- name: Run tests | |
run: dart test | |