From ecb5ef7566b33efc76d7e3129bb93709d089c2b4 Mon Sep 17 00:00:00 2001 From: Andy Lok Date: Sat, 22 Jul 2023 01:25:43 +0800 Subject: [PATCH] Create ci.yml --- .github/workflows/ci.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 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..d3ca4ef --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,24 @@ +name: Rust + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose + - name: Run example + run: cargo run --example main