This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
Adding deprecation notice to README #31
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 | |
env: | |
FLUTTER_CHANNEL: stable | |
on: | |
push: | |
branches: [ dev ] | |
paths: | |
- 'rich_clipboard*/lib/**/*' | |
- 'rich_clipboard*/test/**/*' | |
- '*.yml' | |
- '*.yaml' | |
- 'pubspec.lock' | |
- '.github/**/*' | |
pull_request: {} | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Verify formatting | |
run: flutter format --output=none --set-exit-if-changed . | |
- name: Analyze code | |
working-directory: rich_clipboard | |
run: melos run analyze | |
test-windows: | |
name: Test (Windows) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Run tests | |
working-directory: rich_clipboard_windows | |
run: flutter test |