From bc8fe29733476623497657209fb876748df8e6fb Mon Sep 17 00:00:00 2001 From: alemi Date: Thu, 5 Sep 2024 00:08:41 +0200 Subject: [PATCH] ci: add basic ci to project --- .github/workflows/ci.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 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..4abba5a --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,27 @@ +name: Cargo Build & Test + +on: + push: + branches: + - dev + +env: + CARGO_TERM_COLOR: always + +jobs: + build_and_test: + name: Cargo Build & Test + runs-on: ubuntu-latest + strategy: + matrix: + toolchain: + - stable + # - beta + # - nightly + # TODO should re-enable future toolchains so we get warnings on breaking changes + steps: + - uses: arduino/setup-protoc@v2 + - uses: actions/checkout@v3 + - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} + - run: cargo build --verbose --features=${{ matrix.features }} + - run: cargo test --verbose --features=${{ matrix.features }}