Bump rexml from 3.2.6 to 3.3.3 in /ios #147
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: CI | |
# Until there are actual tests, we just smoke test by building the app | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build-android: | |
runs-on: ubuntu-latest | |
container: | |
image: cimg/android:2023.11-node | |
options: -u root | |
steps: | |
- name: "Install SDK 33" | |
run: sdkmanager "build-tools;33.0.0" | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
id: flutter-action | |
with: | |
flutter-version: '3.16.x' | |
- name: Workaround flutter directory permissions | |
run: |- | |
git config --global --add safe.directory ${{ steps.flutter-action.outputs.CACHE-PATH }} | |
git config --global --add safe.directory $(pwd) | |
- name: Build | |
run: flutter build apk --debug | |
build-ios: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.16.x' | |
- name: Build | |
run: flutter build ios --debug --no-codesign |