Skip to content

Commit ecca006

Browse files
committed
A fix
1 parent 5ca618c commit ecca006

4 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/audit.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: security audit
22
on:
3+
workflow_dispatch:
34
push:
45
paths:
56
- '*.toml'

.github/workflows/markdown-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
name: markdown check
22
on:
3+
workflow_dispatch:
34
push:
45
paths:
56
- '*.md'
67
pull_request:
78
paths:
89
- '*.md'
9-
workflow_dispatch:
1010
jobs:
1111
check:
1212
runs-on: ubuntu-latest

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
name: unit tests
22
on:
3+
workflow_dispatch:
34
push:
45
paths:
5-
- '**/**/*.rs'
6+
- '**/*.rs'
67
pull_request:
78
paths:
8-
- '**/**/*.rs'
9-
workflow_dispatch:
9+
- '**/*.rs'
1010
jobs:
1111
test:
1212
runs-on: ubuntu-latest

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Extract frames
22

3-
[![unit tests](https://github.com/egorsmkv/read-video-rs/actions/workflows/test.yml/badge.svg)](https://github.com/egorsmkv/read-video-rs/actions/workflows/test.yml)
4-
[![security audit](https://github.com/egorsmkv/extract-frames-rs/actions/workflows/audit.yml/badge.svg)](https://github.com/egorsmkv/extract-frames-rs/actions/workflows/audit.yml)
3+
[![unit tests](https://github.com/egorsmkv/read-video-rs/actions/workflows/test.yaml/badge.svg)](https://github.com/egorsmkv/read-video-rs/actions/workflows/test.yaml)
4+
[![security audit](https://github.com/egorsmkv/extract-frames-rs/actions/workflows/audit.yaml/badge.svg)](https://github.com/egorsmkv/extract-frames-rs/actions/workflows/audit.yaml)
55

66
A Rust-based command-line application for extracting frames from video files
77
using FFmpeg, supporting both sequential and parallel processing modes.

0 commit comments

Comments
 (0)