alpha
Login
or
Join now
gwen.works
/
shapemaker
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
👷 Add CI check job for PRs
author
Gwenn Le Bihan
date
1 year ago
(Apr 6, 2025, 12:10 PM +0200)
commit
711b2401
711b2401937b5935bd625b768bf2ab1db0063e37
parent
5eb83c43
5eb83c43eebe08a2290b514a85d4947593d9c70f
+28
1 changed file
Expand all
Collapse all
Unified
Split
.github
workflows
check.yml
+28
.github/workflows/check.yml
Reviewed
···
1
1
+
on:
2
2
+
pull_request: {}
3
3
+
4
4
+
jobs:
5
5
+
check:
6
6
+
runs-on: ubuntu-latest
7
7
+
steps:
8
8
+
- uses: actions/checkout@v2
9
9
+
- name: install system deps for ffmpeg-sys-next
10
10
+
run: |
11
11
+
sudo apt update
12
12
+
sudo apt install -y \
13
13
+
pkg-config \
14
14
+
clang \
15
15
+
libavcodec-dev \
16
16
+
libavdevice-dev \
17
17
+
libavfilter-dev \
18
18
+
libavformat-dev \
19
19
+
libswresample-dev \
20
20
+
libavutil-dev \
21
21
+
libpostproc-dev \
22
22
+
libswscale-dev
23
23
+
- uses: actions-rs/toolchain@v1
24
24
+
with: { toolchain: stable }
25
25
+
- uses: actions-rs/cargo@v1
26
26
+
with: { command: check, args: --workspace }
27
27
+
- uses: actions-rs/cargo@v1
28
28
+
with: { command: check, args: --no-default-features --features web }