From 2adc547030eded2fafb3827dafeace8a682e86cc Mon Sep 17 00:00:00 2001 From: Valentin Haudiquet Date: Fri, 28 Nov 2025 15:32:55 +0100 Subject: [PATCH] ci: first ci test --- .github/workflows/ci.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 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..41858c6 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,26 @@ +name: CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + - uses: dtolnay/rust-toolchain@stable + - name: Build + run: cargo build + - name: Install runtime system dependencies + run: | + sudo apt-get update + sudo apt-get install -y pristine-tar + - name: Run tests + run: cargo test + \ No newline at end of file