Skip to content

Bump pub_semver from 2.1.4 to 2.1.5 in /scripts #307

Bump pub_semver from 2.1.4 to 2.1.5 in /scripts

Bump pub_semver from 2.1.4 to 2.1.5 in /scripts #307

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@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94
- 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'