Skip to content

Commit

Permalink
ci: add basic ci to project
Browse files Browse the repository at this point in the history
  • Loading branch information
alemidev committed Sep 4, 2024
1 parent 966e4c6 commit bc8fe29
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit bc8fe29

Please sign in to comment.