Skip to content

Bump http from 1.2.1 to 1.2.2 in /scripts #265

Bump http from 1.2.1 to 1.2.2 in /scripts

Bump http from 1.2.1 to 1.2.2 in /scripts #265

Workflow file for this run

name: Scripts CI
on:
push:
branches: [ main ]
paths:
- 'scripts/**'
pull_request:
branches: [ main ]
paths:
- 'scripts/**'
schedule:
- cron: "0 0 * * 0"
defaults:
run:
working-directory: scripts
env:
PUB_ENVIRONMENT: bot.github
jobs:
analyze-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672
- id: install
name: Install dependencies
run: dart pub get
- name: Check formatting
run: dart format --output=none --set-exit-if-changed .
if: always() && steps.install.outcome == 'success'
- name: Analyze code
run: dart analyze --fatal-infos
if: always() && steps.install.outcome == 'success'
- name: Run VM tests
run: dart test --platform vm
if: always() && steps.install.outcome == 'success'