Skip to content
This repository has been archived by the owner on Oct 3, 2024. It is now read-only.

Bump actions/checkout from 4.1.7 to 4.2.0 in the github-actions group #163

Bump actions/checkout from 4.1.7 to 4.2.0 in the github-actions group

Bump actions/checkout from 4.1.7 to 4.2.0 in the github-actions group #163

Workflow file for this run

name: Build
on:
schedule:
# “At 00:00 (UTC) on Sunday.”
- cron: '0 0 * * 0'
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
- uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672
- name: Install dependencies
run: dart pub get
# Disabled - this would format ~492 files.
# - name: Verify formatting
# run: dart format --output=none --set-exit-if-changed .
- name: Analyze project source
run: dart analyze --fatal-infos
- name: Run tests
run: dart test