feat: obscure text for secret key (#37) #22
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
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
name: analyze | |
env: | |
flutter_version: '3.10.x' | |
jobs: | |
build: | |
name: lint flutter code | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v3 | |
- name: set up flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: ${{ env.flutter_version }} | |
channel: 'stable' | |
cache: true | |
cache-key: 'flutter-:os:-:channel:-:version:-:arch:-:hash:' # optional, change this to force refresh cache | |
cache-path: '${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:' # optional, change this to specify the cache path | |
- name: flutter version | |
run: flutter --version | |
- name: flutter pub get | |
run: flutter pub get | |
- name: analyze dart | |
uses: invertase/github-action-dart-analyzer@v1 | |
with: | |
fatal-infos: false | |
fatal-warnings: true | |
annotate: true | |
annotate-only: false | |
working-directory: ./ |