This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

👷 Add CI job that runs tests

+16 -1
+16 -1
.github/workflows/check.yml
··· 12 12 with: { toolchain: stable } 13 13 - uses: extractions/setup-just@v1 14 14 - uses: carlosperate/download-file-action@v2 15 - with: { file-url: "https://gwennlbh.github.io/shapemaker/timings.csv", file-name: results-main.csv } 15 + with: 16 + { 17 + file-url: "https://gwennlbh.github.io/shapemaker/timings.csv", 18 + file-name: results-main.csv, 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 + 67 + test: 68 + runs-on: ubuntu-latest 69 + steps: 70 + - uses: actions/checkout@v2 71 + - name: install system deps for ffmpeg-sys-next 72 + run: sudo apt-get update && sudo apt-get install -y ffmpeg 73 + - uses: actions-rs/toolchain@v1 74 + with: { toolchain: stable } 75 + - uses: actions-rs/cargo@v1 76 + with: { command: test, args: --workspace }