From 18ecc4462b48ae2bfa122e5c81f1c95da45cb296 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolphe=20Br=C3=A9ard?= Date: Sat, 30 Oct 2021 20:51:51 +0200 Subject: [PATCH] Add a GitHub action CI --- .github/workflows/ci.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..f8a1018 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,34 @@ +name: ci +on: [push, pull_request] + +jobs: + test: + name: Test + runs-on: ubuntu-latest + strategy: + matrix: + rust: + - 1.46.0 + - 1.51.0 + - 1.56.0 + - stable + - beta + - nightly + steps: + - uses: actions/checkout@v2 + - name: Install Rust ${{ matrix.rust }} + uses: actions-rs/toolchain@v1 + with: + toolchain: ${{ matrix.rust }} + override: true + profile: minimal + - name: Run cargo build + uses: actions-rs/cargo@v1 + with: + command: build + args: --verbose + - name: Run cargo test + uses: actions-rs/cargo@v1 + with: + command: test + args: --verbose