Skip to content

build(deps-dev): bump pycryptodome from 3.18.0 to 3.19.1 in /examples/wallet_app/devnet #280

build(deps-dev): bump pycryptodome from 3.18.0 to 3.19.1 in /examples/wallet_app/devnet

build(deps-dev): bump pycryptodome from 3.18.0 to 3.19.1 in /examples/wallet_app/devnet #280

Workflow file for this run

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