Skip to content

chore(deps): bump dart-lang/setup-dart from 1.6.5 to 1.7.0 #23

chore(deps): bump dart-lang/setup-dart from 1.6.5 to 1.7.0

chore(deps): bump dart-lang/setup-dart from 1.6.5 to 1.7.0 #23

Workflow file for this run

name: Dart
on:
pull_request:
paths:
- ".github/workflows/dart.yaml"
- "dart/**"
# Prevent duplicate runs due to Graphite
# https://graphite.dev/docs/troubleshooting#why-are-my-actions-running-twice
concurrency:
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }}-${{ github.ref == 'refs/heads/main' && github.sha || ''}}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Git Checkout
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # 4.2.1
with:
submodules: true
- name: Setup Dart
uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94 # main
- name: Get Packages
working-directory: dart
run: dart pub get
- name: Test
working-directory: dart
run: dart test --fail-fast