fix some warnings related to doc comments #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
llvm: | |
- 9 | |
- 10 | |
- 11 | |
- 12 | |
- 13 | |
- 14 | |
- 15 | |
- 16 | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Install LLVM ${{ matrix.llvm }} | |
run: curl https://apt.llvm.org/llvm.sh | sudo bash -s -- ${{ matrix.llvm }} | |
- name: Install Polly ${{ matrix.llvm }} | |
run: sudo apt-get install -y libpolly-${{ matrix.llvm }}-dev | |
if: matrix.llvm >= 14 | |
- name: Install zstd | |
run: sudo apt-get install -y libzstd-dev | |
if: matrix.llvm >= 16 | |
- name: Install Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
- name: Build Debug | |
uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --features=llvm-${{ matrix.llvm }} | |
- name: Build Release | |
uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --release --features=llvm-${{ matrix.llvm }} | |
- name: Test | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --release --features=llvm-${{ matrix.llvm }} |