Skip to content

perf(internet): use bitshift operations instead of string manipulatio… #5

perf(internet): use bitshift operations instead of string manipulatio…

perf(internet): use bitshift operations instead of string manipulatio… #5

Workflow file for this run

name: Dart CI analyze and test
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
jobs:
analyze:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Git Checkout
uses: actions/checkout@v4
- name: Setup Dart
uses: dart-lang/setup-dart@v1
with:
sdk: stable
- name: Install dependencies
run: dart pub get
- name: Verify formatting
run: dart format --output=none --set-exit-if-changed .
- name: Analyze source code
run: dart analyze --fatal-infos --fatal-warnings
- name: Run tests
run: dart test --test-randomize-ordering-seed=random