Skip to content

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

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 #76

Workflow file for this run

name: cedar_ffi
on:
pull_request:
paths:
- ".github/workflows/cedar_ffi.yaml"
- "packages/cedar/**"
- "packages/cedar_ffi/**"
# 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
defaults:
run:
shell: bash
working-directory: packages/cedar_ffi
jobs:
test:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-14
- windows-latest
runs-on: ${{ matrix.os }}
# TODO(dnys1): Speed up Rust builds
timeout-minutes: 15
steps:
- name: Git Checkout
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # 4.2.0
with:
submodules: true
- name: Setup Dart
uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94 # main
- name: Setup Rust
uses: actions-rust-lang/setup-rust-toolchain@11df97af8e8102fd60b60a77dfbf58d40cd843b8 # 1.10.1
- name: Create override
run: |
cat <<EOF > pubspec_overrides.yaml
dependency_overrides:
cedar:
path: ../cedar
EOF
- name: Get Packages
run: dart pub get
- name: Test
run: dart --enable-experiment=native-assets test --fail-fast