-
Notifications
You must be signed in to change notification settings - Fork 1
74 lines (74 loc) · 1.86 KB
/
rust.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
name: Rust
on:
pull_request:
branches: main
release:
types: published
env:
CARGO_TERM_COLOR: always
jobs:
bench:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
- uses: actions/setup-python@v5
with:
check-latest: true
python-version: 3.13
- name: numpy
run: pip install numpy
- name: pillow
run: pip install pillow
- name: block
run: ./benches/block.sh
- name: bench
run: rustup run nightly cargo bench
package:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: cleanup
run: rm -fr book/ sandbox/ tests/
- name: package
run: cargo package
- name: login
if: github.event_name == 'release'
run: cargo login ${{ secrets.CRATES_IO_TOKEN }}
- name: publish
if: github.event_name == 'release'
run: cargo publish
test:
if: github.event_name != 'release'
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
toolchain:
- beta
- stable
runs-on: ${{ matrix.os }}
steps:
- name: checkout
uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
components: clippy, rustfmt
default: true
toolchain: ${{ matrix.toolchain }}
- name: build
run: cargo build --release
- name: clippy
run: cargo clippy -- -D warnings
- name: clippy
run: cargo clippy --tests
- name: doc
run: cargo rustdoc --release -- --html-in-header docs/katex.html
- name: fmt
run: cargo fmt --all -- --check
- name: test
run: cargo test --release