@@ -31,53 +31,53 @@ jobs:
31
31
repo-token : ${{ secrets.GITHUB_TOKEN }}
32
32
- run : cargo test --all-features
33
33
34
- lints :
35
- name : Lints
36
- runs-on : ubuntu-latest
37
- steps :
38
- - uses : actions/checkout@v2
39
- - uses : dtolnay/rust-toolchain@v1
40
- with :
41
- toolchain : stable
42
- components : clippy, rustfmt
43
- - name : Get latest CMake and ninja
44
- uses : lukka/get-cmake@latest
45
- - name : Install Protoc
46
- uses : arduino/setup-protoc@v1
47
- with :
48
- repo-token : ${{ secrets.GITHUB_TOKEN }}
49
- - run : cargo fmt --all -- --check
50
- - run : cargo clippy --all -- -D warnings
51
- - run : cargo check
52
- - run : cargo check --package prost-reflect --no-default-features
53
- - run : cargo check --package prost-reflect --no-default-features --features=text-format
54
- - run : cargo check --package prost-reflect --no-default-features --features=serde
55
- - run : cargo check --package prost-reflect --all-features
56
- - name : Check README.md is up-to-date
57
- shell : pwsh
58
- run : |
59
- ./generate-readme.ps1
60
- if (git diff README.md) {
61
- Write-Error "README.md is out-of-date, run generate-readme.ps1 to regenerate it." -ErrorAction Stop
62
- }
34
+ # lints:
35
+ # name: Lints
36
+ # runs-on: ubuntu-latest
37
+ # steps:
38
+ # - uses: actions/checkout@v2
39
+ # - uses: dtolnay/rust-toolchain@v1
40
+ # with:
41
+ # toolchain: stable
42
+ # components: clippy, rustfmt
43
+ # - name: Get latest CMake and ninja
44
+ # uses: lukka/get-cmake@latest
45
+ # - name: Install Protoc
46
+ # uses: arduino/setup-protoc@v1
47
+ # with:
48
+ # repo-token: ${{ secrets.GITHUB_TOKEN }}
49
+ # - run: cargo fmt --all -- --check
50
+ # - run: cargo clippy --all -- -D warnings
51
+ # - run: cargo check
52
+ # - run: cargo check --package prost-reflect --no-default-features
53
+ # - run: cargo check --package prost-reflect --no-default-features --features=text-format
54
+ # - run: cargo check --package prost-reflect --no-default-features --features=serde
55
+ # - run: cargo check --package prost-reflect --all-features
56
+ # - name: Check README.md is up-to-date
57
+ # shell: pwsh
58
+ # run: |
59
+ # ./generate-readme.ps1
60
+ # if (git diff README.md) {
61
+ # Write-Error "README.md is out-of-date, run generate-readme.ps1 to regenerate it." -ErrorAction Stop
62
+ # }
63
63
64
- coverage :
65
- name : Coverage
66
- runs-on : ubuntu-latest
67
- container :
68
- image : xd009642/tarpaulin:develop
69
- options : --security-opt seccomp=unconfined
70
- steps :
71
- - uses : actions/checkout@v2
72
- - name : Install Protoc
73
- uses : arduino/setup-protoc@v1
74
- with :
75
- repo-token : ${{ secrets.GITHUB_TOKEN }}
76
- - name : Generate code coverage
77
- run : |
78
- cargo tarpaulin --verbose --packages prost-reflect prost-reflect-tests --all-features --timeout 120 --out xml
79
- - name : Upload to codecov.io
80
- uses : codecov/codecov-action@v4
81
- with :
82
- fail_ci_if_error : true
83
- token : ${{ secrets.CODECOV_TOKEN }}
64
+ # coverage:
65
+ # name: Coverage
66
+ # runs-on: ubuntu-latest
67
+ # container:
68
+ # image: xd009642/tarpaulin:develop
69
+ # options: --security-opt seccomp=unconfined
70
+ # steps:
71
+ # - uses: actions/checkout@v2
72
+ # - name: Install Protoc
73
+ # uses: arduino/setup-protoc@v1
74
+ # with:
75
+ # repo-token: ${{ secrets.GITHUB_TOKEN }}
76
+ # - name: Generate code coverage
77
+ # run: |
78
+ # cargo tarpaulin --verbose --packages prost-reflect prost-reflect-tests --all-features --timeout 120 --out xml
79
+ # - name: Upload to codecov.io
80
+ # uses: codecov/codecov-action@v4
81
+ # with:
82
+ # fail_ci_if_error: true
83
+ # token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments