fix: OAuth disconnect #316
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: Flutter CI | |
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- synchronize | |
env: | |
flutter_version: "3.10.x" | |
jobs: | |
Setup-Flutter: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Cache Flutter dependencies | |
uses: actions/cache@v2 | |
with: | |
path: /opt/hostedtoolcache/flutter | |
key: ${{ runner.OS }}-flutter-install-cache-${{ env.flutter_version }} | |
- uses: subosito/[email protected] | |
with: | |
flutter-version: ${{ env.flutter_version }} | |
- uses: webfactory/[email protected] | |
with: | |
ssh-private-key: | | |
${{ secrets.CLIENT_COMMON_SSH }} | |
${{ secrets.LENRA_COMPONENTS_SSH }} | |
${{ secrets.LENRA_UI_RUNNER_SSH }} | |
${{ secrets.CLIENT_APP_SSH }} | |
- name: Restore packages | |
run: flutter pub get | |
- name: Analyze | |
run: flutter analyze --no-congratulate | |
- name: Run tests | |
run: flutter test --coverage | |
# - name: Upload coverage to codecov | |
# uses: codecov/codecov-action@v2 | |
# with: | |
# token: ${{ secrets.CODECOV_TOKEN }} |