Migrate to GitHub Actions (#146)

* Delete .travis.yml
diff --git a/.github/workflows/test-package.yml b/.github/workflows/test-package.yml
new file mode 100644
index 0000000..e958231
--- /dev/null
+++ b/.github/workflows/test-package.yml
@@ -0,0 +1,75 @@
+name: Dart CI
+
+on:
+  # Run on PRs and pushes to the default branch.
+  push:
+    branches: [ master ]
+  pull_request:
+    branches: [ master ]
+  schedule:
+    - cron: "0 0 * * 0"
+
+env:
+  PUB_ENVIRONMENT: bot.github
+
+jobs:
+  # Check code formatting and static analysis on a single OS (linux)
+  # against Dart dev and 2.10.0.
+  analyze:
+    runs-on: ubuntu-latest
+    strategy:
+      fail-fast: false
+      matrix:
+        sdk: [dev]
+        version: [latest]
+        include:
+          - sdk: stable
+            version: 2.10.0
+    steps:
+      - uses: actions/checkout@v2
+      - uses: cedx/setup-dart@v2 # TODO(dart-lang/setup-dart#3): use the official setup-dart action
+        with:
+          release-channel: ${{ matrix.sdk }}
+          version: ${{ matrix.version }}
+      - id: install
+        name: Install dependencies
+        run: dart pub get
+      - name: Check formatting
+        run: dart format --output=none --set-exit-if-changed .
+        if: always() && steps.install.outcome == 'success'
+      - name: Analyze code
+        run: dart analyze --fatal-infos
+        if: always() && steps.install.outcome == 'success'
+
+  # Run tests on a matrix consisting of two dimensions:
+  # 1. OS: ubuntu-latest, (macos-latest, windows-latest)
+  # 2. release channel: dev, stable
+  test:
+    needs: analyze
+    runs-on: ${{ matrix.os }}
+    strategy:
+      fail-fast: false
+      matrix:
+        # Add macos-latest and/or windows-latest if relevant for this package.
+        os: [ubuntu-latest]
+        sdk: [dev]
+        version: [latest]
+        include:
+          - os: ubuntu-latest
+            sdk: stable
+            version: 2.10.0
+    steps:
+      - uses: actions/checkout@v2
+      - uses: cedx/setup-dart@v2 # TODO(dart-lang/setup-dart#3): use the official setup-dart action
+        with:
+          release-channel: ${{ matrix.sdk }}
+          version: ${{ matrix.version }}
+      - id: install
+        name: Install dependencies
+        run: dart pub get
+      - name: Run VM tests
+        run: dart test --platform vm
+        if: always() && steps.install.outcome == 'success'
+      - name: Run Chrome tests
+        run: dart test --platform chrome -j1
+        if: always() && steps.install.outcome == 'success'
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 7d2eb7c..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-language: dart
-
-dart:
-- 2.10.0
-- dev
-
-dart_task:
-  - test: --platform vm
-  - test: --platform chrome -j 1
-  - dartanalyzer: --fatal-infos --fatal-warnings .
-  - dartfmt
-
-# Only building master means that we don't run two builds for each pull request.
-branches:
-  only: [master]
-
-cache:
-  directories:
-    - $HOME/.pub-cache
diff --git a/README.md b/README.md
index 731099f..6ede03e 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-[![Build Status](https://travis-ci.org/dart-lang/web_socket_channel.svg?branch=master)](https://travis-ci.org/dart-lang/web_socket_channel)
+[![Build Status](https://github.com/dart-lang/web_socket_channel/workflows/Dart%20CI/badge.svg)](https://github.com/dart-lang/web_socket_channel/actions?query=workflow%3A"Dart+CI"+branch%3Amaster)
 
 The `web_socket_channel` package provides [`StreamChannel`][stream_channel]
 wrappers for WebSocket connections. It provides a cross-platform