From 93a4f02e81b2039bf2475258d05973de8465948e Mon Sep 17 00:00:00 2001 From: Hamir Mahal Date: Tue, 4 Jun 2024 01:21:58 -0700 Subject: [PATCH] ci: add test workflow (#67) --- .github/workflows/test.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..41cf537 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,15 @@ +name: Test +on: [pull_request, push] +jobs: + blue-recorder: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: Swatinem/rust-cache@v2 + - name: Install dependencies + run: | + sudo apt-get install \ + librust-gstreamer-sys-dev \ + librust-gtk4-sys-dev \ + libunwind-dev + - run: cargo test