removed scratch.oche #13
This file contains hidden or 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: Dart CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 # Checks out your repository | |
| - uses: dart-lang/setup-dart@v1 # Sets up the Dart SDK | |
| - name: Install dependencies | |
| run: dart pub get | |
| - name: Run tests | |
| run: dart test | |
| - name: Analyze code | |
| run: dart analyze | |
| - name: Check formatting | |
| run: dart format --output=none --set-exit-if-changed . |