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 job that runs tests
author
Gwenn Le Bihan
date
8 months ago
(Oct 21, 2025, 10:13 PM +0200)
commit
8efd6c4d
8efd6c4dc86da7e72c1e0ba640de893350dccf88
parent
860ef0ce
860ef0ceeca57a7d0c1b461c06ab47ee3955ff1c
+16
-1
1 changed file
Expand all
Collapse all
Unified
Split
.github
workflows
check.yml
+16
-1
.github/workflows/check.yml
Reviewed
···
12
12
with: { toolchain: stable }
13
13
- uses: extractions/setup-just@v1
14
14
- uses: carlosperate/download-file-action@v2
15
15
-
with: { file-url: "https://gwennlbh.github.io/shapemaker/timings.csv", file-name: results-main.csv }
15
15
+
with:
16
16
+
{
17
17
+
file-url: "https://gwennlbh.github.io/shapemaker/timings.csv",
18
18
+
file-name: results-main.csv,
19
19
+
}
16
20
- uses: fontist/setup-fontist@v2
17
21
- run: fontist install "Victor Mono"
18
22
- run: just timings results-main.csv
···
59
63
with: { command: check, args: --workspace }
60
64
- uses: actions-rs/cargo@v1
61
65
with: { command: check, args: --no-default-features --features web }
66
66
+
67
67
+
test:
68
68
+
runs-on: ubuntu-latest
69
69
+
steps:
70
70
+
- uses: actions/checkout@v2
71
71
+
- name: install system deps for ffmpeg-sys-next
72
72
+
run: sudo apt-get update && sudo apt-get install -y ffmpeg
73
73
+
- uses: actions-rs/toolchain@v1
74
74
+
with: { toolchain: stable }
75
75
+
- uses: actions-rs/cargo@v1
76
76
+
with: { command: test, args: --workspace }