Skip to content

Commit

Permalink
build: fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
colinmarc committed Apr 25, 2024
1 parent 8048d86 commit 7a80a4d
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
on: [push, pull_request]
on:
push:
branches: [main, test-ci]
pull_request:
branches: [main]
name: Tests
jobs:
tests:
Expand All @@ -7,7 +11,11 @@ jobs:
steps:
- uses: dtolnay/rust-toolchain@stable
- name: install deps
run: sudo apt install nasm cmake protobuf-compiler libxkbcommon-dev libwayland-dev
run: |
sudo apt install \
nasm cmake protobuf-compiler \
libxkbcommon-dev libwayland-dev \
ffmpeg libavutil-dev libavfilter-dev libavformat-dev
- uses: actions/checkout@v4
- uses: swatinem/rust-cache@v2
Expand Down

0 comments on commit 7a80a4d

Please sign in to comment.