Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Move to GitHub Actions for CI #167

Merged
merged 3 commits into from
Nov 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: ci

on:
push:
branches: [ master ]
pull_request:
schedule:
# “At 00:00 (UTC) on Sunday.”
- cron: '0 0 * * 0'

jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: cedx/setup-dart@v2
with:
release-channel: dev
- uses: actions/checkout@v2

- run: pub get

- run: dart format --output=none --set-exit-if-changed .
- run: dart analyze --fatal-infos .
- run: dart test -p vm,chrome
3 changes: 0 additions & 3 deletions .test_config

This file was deleted.

40 changes: 0 additions & 40 deletions .travis.yml

This file was deleted.