Skip to content

Fix build error when api-version=6.0 and arch=x86 #577

Fix build error when api-version=6.0 and arch=x86

Fix build error when api-version=6.0 and arch=x86 #577

Workflow file for this run

name: Analyze
on: [push, pull_request]
jobs:
dart:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Fetch Flutter SDK
run: |
git clone --depth=1 https://github.com/flutter/flutter.git
cd flutter
git fetch --depth=1 https://github.com/flutter/flutter.git $(cat ../bin/internal/flutter.version)
git checkout FETCH_HEAD
- name: Install pub dependencies
run: flutter/bin/flutter pub get
- name: Verify formatting
run: flutter/bin/dart format --output=none --set-exit-if-changed lib test packages
- name: Analyze project source
run: flutter/bin/dart analyze --fatal-infos lib test
csharp:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v2
with:
dotnet-version: '6.0.x'
- name: Verify formatting
run: dotnet format --verify-no-changes embedding/csharp