Skip to content

Bump actions/checkout from 4.1.1 to 4.1.3 #33

Bump actions/checkout from 4.1.1 to 4.1.3

Bump actions/checkout from 4.1.1 to 4.1.3 #33

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
sdk:
- stable
steps:
- uses: actions/checkout@v4.1.3
- uses: subosito/flutter-action@v2.12.0
with:
sdk: "${{ matrix.sdk }}"
- name: Install dependencies
run: flutter pub get
- name: Format
run: dart format --set-exit-if-changed -o none .
- name: Analyze
run: dart analyze lib