From 337a8af2f8d3f1754abedb012f03519ee9b6b127 Mon Sep 17 00:00:00 2001 From: John Wass Date: Tue, 2 Apr 2024 13:53:01 -0400 Subject: [PATCH] simple ci --- .github/workflows/ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 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..c4d7f6b --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,18 @@ +name: Rust + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - run: cargo build --all --examples --verbose + - run: cargo test --all --verbose