Skip to content

Commit

Permalink
Fix paths in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dcharkes committed Jan 16, 2024
1 parent 7f8cadd commit 9c3fc4c
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/ffi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,15 @@ name: Dart CI
on:
# Run on PRs and pushes to the default branch.
push:
branches: [ main ]
branches: [main]
paths:
- '.github/workflows/ffi.yaml'
- 'pkgs/ffi/**'
pull_request:
branches: [ main ]
branches: [main]
paths:
- '.github/workflows/ffi.yaml'
- 'pkgs/ffi/**'
schedule:
- cron: "0 0 * * 0"

Expand All @@ -17,6 +23,9 @@ jobs:
# against Dart dev.
analyze:
runs-on: ubuntu-latest
defaults:
run:
working-directory: pkgs/ffi/
strategy:
fail-fast: false
matrix:
Expand All @@ -42,6 +51,9 @@ jobs:
test:
needs: analyze
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: pkgs/ffi/
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit 9c3fc4c

Please sign in to comment.