ci: semantic-release to new workflow #328
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.3.9" | |
jobs: | |
prIsWip: | |
name: PR is WIP? | |
runs-on: ubuntu-latest | |
timeout-minutes: 2 | |
outputs: | |
isWip: ${{ steps.prIsWip.outputs.isWip }} | |
steps: | |
- id: prIsWip | |
uses: shiipou/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
Setup-Flutter: | |
needs: | |
- prIsWip | |
if: needs.prIsWip.outputs.isWip == 'false' | |
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.LENRA_COMPONENTS_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 }} |