Remove the Travis config.
This finishes the move from Travis for CI to GitHub Actions. Everything Travis did is done by GitHub Actions as well, and Bors has been configured to use Actions rather than Travis to gate PR merges. The Travis CI is currently broken, this removes that CI config so we don't get failed status checks on PRs in the GitHub UI.
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 2333df3..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-# Disable bors on the bors temp branch
-branches:
- except:
- - staging.tmp
- - trying.tmp
-
-language: rust
-rust:
- - nightly-2020-04-06
-
-os:
- - linux
-
-cache: cargo
-
-install:
- - CI=y make -j8 setup
- - rm -rf ~/opentitan* # Make sure this isn't left over, see https://github.com/tock/tock/pull/1978
-
-script:
- - make test