-
Notifications
You must be signed in to change notification settings - Fork 8
90 lines (83 loc) · 2.24 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
name: Rust
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- uses: Swatinem/rust-cache@v2
- uses: taiki-e/install-action@nextest
- name: Install pandoc
run: |
curl -LsSf https://github.com/jgm/pandoc/releases/download/3.1.9/pandoc-3.1.9-linux-amd64.tar.gz | tar zxf -
echo "$PWD/pandoc-3.1.9/bin" >> $GITHUB_PATH
- name: Install fonts
run: |
wget -O source-code-pro.zip https://fonts.google.com/download?family=Source%20Code%20Pro
unzip -d source-code-pro source-code-pro.zip
mv source-code-pro /usr/share/fonts
fc-cache -fv
- run: sudo apt-get install -y librsvg2-bin
- name: Install TeX Live
uses: teatimeguest/setup-texlive-action@v3
with:
packages: >-
scheme-basic
amsfonts
amsmath
babel
bookmark
booktabs
fancyvrb
fontawesome
fontspec
geometry
graphics
hyperref
iftex
listings
lm
luacolor
luatexbase
lualatex-math
lua-ul
mdwtools
parskip
selnolig
setspace
soul
tools
unicode-math
xcolor
xurl
- name: Clone submodules
run: git submodule update --init
- name: nextest
run: cargo nextest run
- name: doctest
run: cargo test --doc
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: clippy
- uses: Swatinem/rust-cache@v2
- name: Run clippy
run: cargo clippy -- -D warnings
rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: rustfmt
- uses: Swatinem/rust-cache@v2
- name: Run rustfmt
run: cargo fmt --check