-
Notifications
You must be signed in to change notification settings - Fork 0
97 lines (92 loc) · 2.44 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
91
92
93
94
95
96
97
name: CI
on:
push:
branches:
- master
tags:
- v*
pull_request:
workflow_dispatch:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12.1"
- name: Install dependencies
run: |
pip install --upgrade pip
pip install pre-commit
- name: Lint
run: pre-commit run --all-files --show-diff-on-failure
test-rust:
name: Test Rust source
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
rust-toolchain:
- stable
- nightly
os:
- ubuntu-latest
- windows-latest
- macos-latest
features:
- []
- [tracing]
- [strict]
- [tracing, strict]
steps:
- uses: actions/checkout@v4
- name: Setup Rust
uses: hecrj/setup-rust-action@v2
- name: Cache dependencies
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}-${{ matrix.rust-toolchain }}-${{ join(matrix.features, '-') }}
- name: Unit tests
if: matrix.features[0] != null
run: cargo test -p svg-path-cst --features ${{ join(matrix.features, ',') }}
- name: Unit tests
if: matrix.features[0] == null
run: cargo test -p svg-path-cst
- name: Integration tests
if: matrix.os != 'windows-latest'
run: sh src/tests/integration.sh
test-release-crate:
name: Test crate release
needs:
- test-rust
- lint
if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust
uses: hecrj/setup-rust-action@v2
- name: Publish
run: |
cargo login ${{ secrets.CRATES_TOKEN }}
cargo publish -v --dry-run
release-crate:
name: Release crate
if: startsWith(github.ref, 'refs/tags/')
needs: test-release-crate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust
uses: hecrj/setup-rust-action@v2
- name: Publish
run: |
cargo login ${{ secrets.CRATES_TOKEN }}
cargo publish -v