From 52fa1b3af78259617784e5560a73a68614d1506f Mon Sep 17 00:00:00 2001 From: Wojciech Kozlowski Date: Sat, 6 Jan 2024 01:17:06 +0100 Subject: [PATCH] Add ci workflow --- .gitea/workflows/gitea-ci.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitea/workflows/gitea-ci.yaml diff --git a/.gitea/workflows/gitea-ci.yaml b/.gitea/workflows/gitea-ci.yaml new file mode 100644 index 0000000..cfed429 --- /dev/null +++ b/.gitea/workflows/gitea-ci.yaml @@ -0,0 +1,20 @@ +name: Cargo Build and Test + +on: + push: + pull_request: + +env: + CARGO_TERM_COLOR: always + +jobs: + build_and_test: + name: Rust project - latest + runs-on: debian-latest + container: ghcr.io/catthehacker/ubuntu:rust-latest + steps: + - uses: actions/checkout@v3 + # - container: rust:latest + # run: rustup update stable && rustup default stable + - run: cargo build --verbose --all-features --all-targets + - run: cargo test --verbose --all-features --all-targets