Showing
1 changed file
with
22 additions
and
0 deletions
.github/workflows/dart.yml
0 → 100644
| 1 | +name: Dart CI | ||
| 2 | + | ||
| 3 | +on: | ||
| 4 | + push: | ||
| 5 | + branches: [ master ] | ||
| 6 | + pull_request: | ||
| 7 | + branches: [ master ] | ||
| 8 | + | ||
| 9 | +jobs: | ||
| 10 | + build: | ||
| 11 | + | ||
| 12 | + runs-on: ubuntu-latest | ||
| 13 | + | ||
| 14 | + container: | ||
| 15 | + image: google/dart:latest | ||
| 16 | + | ||
| 17 | + steps: | ||
| 18 | + - uses: actions/checkout@v2 | ||
| 19 | + - name: Install dependencies | ||
| 20 | + run: pub get | ||
| 21 | + - name: Run tests | ||
| 22 | + run: pub run test | 
- 
Please register or login to post a comment