You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

142 lines
3.4 KiB

4 years ago
4 years ago
4 years ago
  1. name: CI
  2. on:
  3. pull_request:
  4. push:
  5. branches:
  6. - master
  7. env:
  8. RUST_BACKTRACE: 1
  9. jobs:
  10. style:
  11. name: Check Style
  12. runs-on: ubuntu-latest
  13. steps:
  14. - name: Checkout
  15. uses: actions/checkout@v1
  16. - name: Install Rust
  17. uses: actions-rs/toolchain@v1
  18. with:
  19. profile: minimal
  20. toolchain: stable
  21. override: true
  22. components: rustfmt
  23. - name: cargo fmt --check
  24. uses: actions-rs/cargo@v1
  25. with:
  26. command: fmt
  27. args: --all -- --check
  28. test:
  29. name: Test
  30. runs-on: ubuntu-latest
  31. env:
  32. RUSTFLAGS: -Dwarnings
  33. strategy:
  34. matrix:
  35. rust:
  36. - stable
  37. - nightly
  38. steps:
  39. - name: Checkout
  40. uses: actions/checkout@v2
  41. - name: Install Rust (${{ matrix.rust }})
  42. uses: actions-rs/toolchain@v1
  43. with:
  44. profile: minimal
  45. toolchain: ${{ matrix.rust }}
  46. override: true
  47. - uses: actions/cache@v2
  48. with:
  49. path: |
  50. ~/.cargo/registry
  51. ~/.cargo/git
  52. target
  53. key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
  54. - name: Check examples
  55. uses: actions-rs/cargo@v1
  56. with:
  57. command: check
  58. args: --examples --all
  59. - name: Check examples with all features on stable
  60. uses: actions-rs/cargo@v1
  61. with:
  62. command: check
  63. args: --examples --all-features --all
  64. if: matrix.rust == 'stable'
  65. - name: Check benchmarks on nightly
  66. uses: actions-rs/cargo@v1
  67. with:
  68. command: check
  69. args: --all-features --examples --workspace --benches
  70. if: matrix.rust == 'nightly'
  71. - name: Test
  72. uses: actions-rs/cargo@v1
  73. with:
  74. command: test
  75. args: "--workspace \
  76. --all-features \
  77. --exclude curve-benches"
  78. docs:
  79. name: Check Documentation
  80. runs-on: ubuntu-latest
  81. steps:
  82. - name: Checkout
  83. uses: actions/checkout@v1
  84. - name: Install Rust
  85. uses: actions-rs/toolchain@v1
  86. with:
  87. profile: minimal
  88. toolchain: stable
  89. override: true
  90. components: rustfmt
  91. - name: cargo doc --all --no-deps --document-private-items --all-features
  92. uses: actions-rs/cargo@v1
  93. with:
  94. command: doc
  95. args: --all --no-deps --document-private-items --all-features
  96. check_no_std:
  97. name: Check no_std
  98. runs-on: ubuntu-latest
  99. steps:
  100. - name: Checkout
  101. uses: actions/checkout@v2
  102. - name: Install Rust (${{ matrix.rust }})
  103. uses: actions-rs/toolchain@v1
  104. with:
  105. toolchain: stable
  106. target: aarch64-unknown-none
  107. override: true
  108. - uses: actions/cache@v2
  109. with:
  110. path: |
  111. ~/.cargo/registry
  112. ~/.cargo/git
  113. target
  114. key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
  115. - name: check
  116. uses: actions-rs/cargo@v1
  117. with:
  118. command: check
  119. args: --examples --workspace --exclude ark-curve-constraint-tests --exclude ark-curve-benches --target aarch64-unknown-none
  120. - name: build
  121. uses: actions-rs/cargo@v1
  122. with:
  123. command: build
  124. args: --workspace --exclude ark-curve-constraint-tests --exclude ark-curve-benches --target aarch64-unknown-none