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
name: Main
on:
push:
env:
CARGO_TERM_COLOR: always
jobs:
build-test:
name: Build and test (${{ matrix.os }})
strategy:
matrix:
os:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: swatinem/rust-cache@v2
- name: Build
run: >
cargo build
--verbose
# - name: Run tests (with coverage)
# if: matrix.os == 'ubuntu-latest'
# run: >
# cargo install cargo-tarpaulin
# && cargo tarpaulin
# --verbose
# --out Xml
# --engine llvm
# --skip-clean
# continue-on-error: true
# - name: Upload coverage reports to Codecov
# if: matrix.os == 'ubuntu-latest'
# uses: codecov/codecov-action@v3
publish:
name: Publish to crates.io
needs: build-test
if: "startsWith(github.event.head_commit.message, 'bump:')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: swatinem/rust-cache@v2
- name: Publish
run: >
cargo publish
--verbose
--allow-dirty
--token ${{ secrets.CARGO_REGISTRY_TOKEN }}