From bf5d3dc222d07bcca732b8397649454dbb3bdaf6 Mon Sep 17 00:00:00 2001 From: Matthew Pomes Date: Sat, 27 Sep 2025 00:32:00 -0500 Subject: [PATCH] Add basic CI --- .gitea/workflows/ci.yaml | 24 ++++++++++++++++++++++++ .gitignore | 1 + 2 files changed, 25 insertions(+) create mode 100644 .gitea/workflows/ci.yaml diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml new file mode 100644 index 0000000..d82d4da --- /dev/null +++ b/.gitea/workflows/ci.yaml @@ -0,0 +1,24 @@ +name: Cargo Build & Test + +on: + push: + pull_request: + +env: + CARGO_TERM_COLOR: always + +jobs: + build_and_test: + name: Rust project - latest + runs-on: rustup-all + strategy: + matrix: + toolchain: + - stable + - beta + - nightly + steps: + - uses: actions/checkout@v4 + - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} + - run: cargo build --verbose + - run: cargo test --verbose diff --git a/.gitignore b/.gitignore index 44bdac5..b2bcd2d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /target podcasts.sqlite .env +/certs/