Skip to content

Commit

Permalink
Merge pull request #95
Browse files Browse the repository at this point in the history
dart3a
  • Loading branch information
alextekartik authored Sep 14, 2023
2 parents bf32540 + 1f45eb8 commit 2ec66f4
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/run_ci_downgrade_analyze.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Run CI
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 0 * * 0' # every sunday at midnight

jobs:
test:
name: Test on ${{ matrix.os }} / ${{ matrix.dart }}
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: .
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
dart: [stable]
steps:
- uses: actions/checkout@v3
- uses: dart-lang/[email protected]
with:
sdk: ${{ matrix.dart }}
- run: dart --version
- run: dart pub global activate dev_test
- run: dart pub global run dev_test:run_ci --pub-downgrade --analyze --no-override --recursive

0 comments on commit 2ec66f4

Please sign in to comment.