[ffigen] Use package:dart_style #822
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ffigen | |
on: | |
# Run on PRs and pushes to the default branch, in either the ffigen directory, | |
# or the objective_c directory. | |
push: | |
branches: [main, stable] | |
paths: | |
- '.github/workflows/ffigen.yml' | |
- 'pkgs/ffigen/**' | |
- 'pkgs/objective_c/**' | |
pull_request: | |
branches: [main, stable] | |
paths: | |
- '.github/workflows/ffigen.yml' | |
- 'pkgs/ffigen/**' | |
- 'pkgs/objective_c/**' | |
schedule: | |
- cron: "0 0 * * 0" | |
env: | |
PUB_ENVIRONMENT: bot.github | |
jobs: | |
# Keep in sync with ffigen_weekly.yaml:test-mac-arm64 | |
test-mac: | |
runs-on: 'macos-latest' | |
defaults: | |
run: | |
working-directory: pkgs/ffigen/ | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- uses: subosito/flutter-action@44ac965b96f18d999802d4b807e3256d5a3f9fa1 | |
with: | |
channel: 'stable' | |
- name: Install dependencies | |
run: flutter pub get && flutter pub get --directory="../objective_c" | |
- name: Build test dylib and bindings | |
run: dart test/setup.dart | |
- name: Run VM tests and collect coverage | |
run: dart run coverage:test_with_coverage --scope-output=ffigen --scope-output=objective_c | |
- name: Upload coverage | |
uses: coverallsapp/github-action@cfd0633edbd2411b532b808ba7a8b5e04f76d2c8 | |
with: | |
flag-name: ffigen | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
parallel: true | |
path-to-lcov: pkgs/ffigen/coverage/lcov.info | |
- name: Upload coverage | |
uses: coverallsapp/github-action@cfd0633edbd2411b532b808ba7a8b5e04f76d2c8 | |
with: | |
carryforward: "ffigen,jni,jnigen,native_assets_builder_macos,native_assets_builder_ubuntu,native_assets_builder_windows,native_assets_cli_macos,native_assets_cli_ubuntu,native_assets_cli_windows,native_toolchain_c_macos,native_toolchain_c_ubuntu,native_toolchain_c_windows,objective_c,swift2objc" | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
parallel-finished: true | |