From 016d2e271b9f6f605b6b4935989c4b1acc263a2f Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Tue, 27 Aug 2019 03:27:17 +0200 Subject: Enable GitHub CI --- .github/workflows/integration.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/integration.yml (limited to '.github') diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml new file mode 100644 index 00000000..726b7322 --- /dev/null +++ b/.github/workflows/integration.yml @@ -0,0 +1,16 @@ +name: Integration +on: [push] +jobs: + test: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macOS-latest] + rust: [stable, beta] + steps: + - uses: actions/checkout@master + - uses: hecrj/setup-rust-action@v1 + with: + rust-version: ${{ matrix.rust }} + - name: Run tests + run: cargo test --verbose -- cgit