[Feature] Add Least Angle Regression #1341
This file contains hidden or 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
| on: [push, pull_request] | |
| name: Codequality Lints | |
| jobs: | |
| codequality: | |
| name: codequality | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| toolchain: | |
| - stable | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@master | |
| - name: Install toolchain | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: ${{ matrix.toolchain }} | |
| components: rustfmt, clippy | |
| - name: Update ndarray to 0.16.1 (temporary workaround to avoid pulling ndarray 0.17.1) | |
| run: cargo update -p ndarray:0.17.1 --precise 0.16.1 | |
| - name: Run cargo fmt | |
| run: cargo fmt --all -- --check | |
| - name: Run cargo clippy | |
| run: cargo clippy --workspace --all-targets -- -D warnings | |
| coverage: | |
| needs: codequality | |
| name: coverage | |
| runs-on: ubuntu-latest | |
| if: github.event_name == 'pull_request' || github.ref == 'refs/heads/master' | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@master | |
| - name: Install toolchain | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Update ndarray to 0.16.1 (temporary workaround to avoid pulling ndarray 0.17.1) | |
| run: cargo update -p ndarray:0.17.1 --precise 0.16.1 | |
| - name: Get rustc version | |
| id: rustc-version | |
| run: echo "::set-output name=version::$(cargo --version | cut -d ' ' -f 2)" | |
| shell: bash | |
| - uses: actions/cache@v4 | |
| id: tarpaulin-cache | |
| with: | |
| path: | | |
| ~/.cargo/bin/cargo-tarpaulin | |
| key: ${{ runner.os }}-cargo-${{ steps.rustc-version.outputs.version }} | |
| - name: Install tarpaulin | |
| if: steps.tarpaulin-cache.outputs.cache-hit != 'true' | |
| run: cargo install cargo-tarpaulin | |
| - name: Generate code coverage | |
| run: | | |
| cargo tarpaulin --verbose --timeout 120 --out Xml --all --release --engine llvm | |
| - name: Upload to codecov.io | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| fail_ci_if_error: true | |