forked from CEED/libCEED
-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (55 loc) · 1.41 KB
/
rust-test-with-style.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
name: Rust
on:
push:
branches:
- main
pull_request:
jobs:
test:
strategy:
matrix:
os: [ubuntu-24.04]
compiler: [clang]
runs-on: ${{ matrix.os }}
steps:
- name: Environment setup
uses: actions/checkout@v4
- name: Rust setup
uses: dtolnay/rust-toolchain@master
with:
# Note: nightly required for coverage of Doctests
toolchain: nightly
components: llvm-tools-preview
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@v2
with:
tool: cargo-llvm-cov
- name: Rust test with coverage
env:
CC: ${{ matrix.compiler }}
FC: gfortran-11
run: cargo llvm-cov test --doctests --lcov --output-path lcov.info
- name: Codecov upload
uses: codecov/codecov-action@v4
with:
files: lcov.info
token: ${{secrets.CODECOV_TOKEN}}
style:
strategy:
matrix:
os: [ubuntu-24.04]
compiler: [clang]
runs-on: ${{ matrix.os }}
steps:
- name: Environment setup
uses: actions/checkout@v4
- name: Rust setup
uses: dtolnay/rust-toolchain@master
with:
# Note: rustfmt not always included in nightly, will attempt to downgrade until rustfmt found
toolchain: nightly
components: rustfmt
- name: Rust style
run: |
cargo +nightly fmt --version
cargo +nightly fmt -- --check