Skip to content

chore(deps): bump anyhow from 1.0.82 to 1.0.83 #17

chore(deps): bump anyhow from 1.0.82 to 1.0.83

chore(deps): bump anyhow from 1.0.82 to 1.0.83 #17

Workflow file for this run

name: cedar_ffi
on:
pull_request:
paths:
- ".github/workflows/cedar_ffi.yaml"
- "packages/cedar/**"
- "packages/cedar_ffi/**"
- "packages/cedar_ffi/third_party/cedar"
- "packages/cedar_ffi/third_party/cedar/**"
# 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:
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@0ad4b8fadaa221de15dcec353f45205ec38ea70b # 4.1.4
with:
submodules: true
- name: Setup Dart
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30 # main
- name: Setup Rust
uses: actions-rust-lang/setup-rust-toolchain@b113a30d27a8e59c969077c0a0168cc13dab5ffc # 1.8.0
- name: Get Packages
working-directory: packages/cedar_ffi
run: dart pub get
- name: Test
working-directory: packages/cedar_ffi
run: dart --enable-experiment=native-assets test --fail-fast