mirror of
https://github.com/xlmnxp/blue-recorder.git
synced 2024-11-23 17:13:11 +03:00
16 lines
376 B
YAML
16 lines
376 B
YAML
|
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
|