-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2005ece
commit 6eddae9
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Tests | ||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Probe runner package cache | ||
uses: awalsh128/cache-apt-pkgs-action@latest | ||
with: | ||
packages: imagemagick cargo | ||
version: 1.0 | ||
|
||
- name: Install oxipng from crates.io | ||
uses: baptiste0928/[email protected] | ||
with: | ||
crate: oxipng | ||
|
||
- name: Install just from crates.io | ||
uses: baptiste0928/[email protected] | ||
with: | ||
crate: just | ||
|
||
- name: Install typst-test from github | ||
uses: baptiste0928/[email protected] | ||
with: | ||
crate: typst-test | ||
git: https://github.com/tingerrr/typst-test.git | ||
tag: ci-semi-stable | ||
|
||
- name: Setup typst | ||
uses: yusancky/setup-typst@v2 | ||
with: | ||
version: 'v0.11.0' | ||
|
||
- name: Run test suite | ||
run: just ci |