Skip to content

Commit

Permalink
Setup dependabot and PR action
Browse files Browse the repository at this point in the history
  • Loading branch information
t-unit committed Dec 14, 2024
1 parent 4c6f950 commit 6636d6e
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: 2
updates:
- package-ecosystem: "pub"
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 5

25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Test

on:
pull_request:
branches: [main]
push:
branches: [main]

jobs:
analyze:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dart-lang/setup-dart@v1

- run: dart pub get
- run: dart analyze
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dart-lang/setup-dart@v1

- run: dart pub get
- run: dart test

0 comments on commit 6636d6e

Please sign in to comment.