Skip to content

Bump actions/checkout from 4.2.1 to 4.2.2 #35

Bump actions/checkout from 4.2.1 to 4.2.2

Bump actions/checkout from 4.2.1 to 4.2.2 #35

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions: read-all
env:
PUB_ENVIRONMENT: bot.github
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
sdk:
- stable
- beta
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672
with:
sdk: ${{ matrix.sdk }}
- name: Install dependencies
run: dart pub get --example
- name: Check formatting
run: dart format --output=none --set-exit-if-changed .
- name: Analyze package
run: dart analyze --fatal-infos .