Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kornelski committed Jun 14, 2024
1 parent 7c354aa commit c748063
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Tests

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Install ffmpeg
run: sudo apt-get -y install ffmpeg pkg-config libavutil-dev libavformat-dev
- uses: actions/checkout@v4
- name: Run tests
run: cargo test --all --verbose

0 comments on commit c748063

Please sign in to comment.