From 9016083524f3e23a7da681ccdfde60d1f063cbb5 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Thu, 28 Nov 2019 06:49:10 +0100 Subject: [PATCH 1/2] Set up GitHub Actions --- .github/workflows/rust.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/rust.yml diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..236cbf8 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,15 @@ +name: Rust + +on: [push, pull_request] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose From 588b8d260a7ff4b4411c8c66d745012f058dfc1b Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Thu, 28 Nov 2019 06:49:25 +0100 Subject: [PATCH 2/2] Remove Travis configuration --- .travis.yml | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 48889e6..0000000 --- a/.travis.yml +++ /dev/null @@ -1,15 +0,0 @@ -language: rust - -# Test on the latest versions of all channels. -rust: - - stable - - beta - - nightly - -script: - - cargo build --all - - cargo test --all - -# Run this build on the "container-based infrastructure" -# See http://docs.travis-ci.com/user/workers/container-based-infrastructure/. -sudo: false