|
1 |
| -name: Tests |
2 |
| -on: |
3 |
| - # Disabled because of a valkyrie regression (#35) |
4 |
| - # push: |
5 |
| - # branches: [ main ] |
6 |
| - # pull_request: |
7 |
| - # branches: [ main ] |
8 |
| - |
9 |
| -jobs: |
10 |
| - tests: |
11 |
| - runs-on: ubuntu-latest |
12 |
| - steps: |
13 |
| - - name: Checkout |
14 |
| - uses: actions/checkout@v3 |
15 |
| - |
16 |
| - - name: Probe runner package cache |
17 |
| - uses: awalsh128/cache-apt-pkgs-action@latest |
18 |
| - with: |
19 |
| - packages: imagemagick cargo fonts-liberation |
20 |
| - version: 1.0 |
21 |
| - |
22 |
| - - name: Install oxipng from crates.io |
23 |
| - uses: baptiste0928/[email protected] |
24 |
| - with: |
25 |
| - crate: oxipng |
26 |
| - |
27 |
| - - name: Install just from crates.io |
28 |
| - uses: baptiste0928/[email protected] |
29 |
| - with: |
30 |
| - crate: just |
31 |
| - |
32 |
| - - name: Install typst-test from github |
33 |
| - uses: baptiste0928/[email protected] |
34 |
| - with: |
35 |
| - crate: typst-test |
36 |
| - git: https://github.com/tingerrr/typst-test.git |
37 |
| - branch: ci-semi-stable |
38 |
| - |
39 |
| - - name: Setup typst |
40 |
| - uses: yusancky/setup-typst@v2 |
41 |
| - with: |
42 |
| - version: 'v0.11.0' |
43 |
| - |
44 |
| - - name: Run test suite |
45 |
| - run: just ci |
| 1 | +# Disabled because of a valkyrie regression (#35) |
| 2 | + |
| 3 | +# name: Tests |
| 4 | +# on: |
| 5 | +# push: |
| 6 | +# branches: [ main ] |
| 7 | +# pull_request: |
| 8 | +# branches: [ main ] |
| 9 | + |
| 10 | +# jobs: |
| 11 | +# tests: |
| 12 | +# runs-on: ubuntu-latest |
| 13 | +# steps: |
| 14 | +# - name: Checkout |
| 15 | +# uses: actions/checkout@v3 |
| 16 | + |
| 17 | +# - name: Probe runner package cache |
| 18 | +# uses: awalsh128/cache-apt-pkgs-action@latest |
| 19 | +# with: |
| 20 | +# packages: imagemagick cargo fonts-liberation |
| 21 | +# version: 1.0 |
| 22 | + |
| 23 | +# - name: Install oxipng from crates.io |
| 24 | +# uses: baptiste0928/[email protected] |
| 25 | +# with: |
| 26 | +# crate: oxipng |
| 27 | + |
| 28 | +# - name: Install just from crates.io |
| 29 | +# uses: baptiste0928/[email protected] |
| 30 | +# with: |
| 31 | +# crate: just |
| 32 | + |
| 33 | +# - name: Install typst-test from github |
| 34 | +# uses: baptiste0928/[email protected] |
| 35 | +# with: |
| 36 | +# crate: typst-test |
| 37 | +# git: https://github.com/tingerrr/typst-test.git |
| 38 | +# branch: ci-semi-stable |
| 39 | + |
| 40 | +# - name: Setup typst |
| 41 | +# uses: yusancky/setup-typst@v2 |
| 42 | +# with: |
| 43 | +# version: 'v0.11.0' |
| 44 | + |
| 45 | +# - name: Run test suite |
| 46 | +# run: just ci |
0 commit comments