(auto merged) chore(deps): bump rayon-core from 1.12.0 to 1.12.1 #48
Workflow file for this run
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: 🔍 Basic Checks | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
changes: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 15 | |
outputs: | |
any_modified: ${{ steps.filter.outputs.any_modified }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: tj-actions/changed-files@v41 | |
id: filter | |
with: | |
files_ignore: | | |
docs | |
LICENSE | |
**.md | |
- name: List all changed files | |
run: | | |
for file in ${{ steps.filter.outputs.all_modified_files }}; do | |
echo "$file was changed" | |
done | |
check: | |
needs: [changes] | |
if: needs.changes.outputs.any_modified == 'true' | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 15 | |
strategy: | |
matrix: | |
arch: [ "x86_64", "aarch64" ] | |
libc: [ "gnu", "musl" ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Rust toolchain and cache | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
components: rustfmt, clippy | |
- name: typos-action | |
uses: crate-ci/typos@v1.14.12 | |
- name: Install just | |
uses: taiki-e/install-action@just | |
- name: Install cross-rs | |
run: cargo install cross --git https://github.com/cross-rs/cross | |
- name: Setup target | |
run: | | |
echo "CARGO=cross" >> ${GITHUB_ENV} | |
echo "TARGET=${{ matrix.arch }}-unknown-linux-${{ matrix.libc }}" >> ${GITHUB_ENV} | |
- name: Check formatting and lints | |
run: just lint | |
tests: | |
needs: [changes] | |
if: needs.changes.outputs.any_modified == 'true' | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 20 | |
strategy: | |
matrix: | |
arch: [ "x86_64" ] | |
libc: [ "gnu", "musl" ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Rust toolchain and cache | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- name: Install just | |
uses: taiki-e/install-action@just | |
- name: Install cross-rs | |
run: cargo install cross --git https://github.com/cross-rs/cross | |
- name: Setup target | |
run: | | |
echo "CARGO=cross" >> ${GITHUB_ENV} | |
echo "TARGET=${{ matrix.arch }}-unknown-linux-${{ matrix.libc }}" >> ${GITHUB_ENV} | |
- name: Run tests | |
run: just test-basic | |
- name: Run feature tests | |
run: just test-features | |
coverage: | |
needs: [changes] | |
if: needs.changes.outputs.any_modified == 'true' | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 20 | |
name: Run test coverage | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Rust toolchain and cache | |
uses: actions-rust-lang/setup-rust-toolchain@v1.3.7 | |
- name: Install llvm-tools-preview | |
run: rustup component add llvm-tools-preview | |
- name: install cargo-llvm-cov | |
uses: taiki-e/install-action@v1 | |
with: | |
tool: cargo-llvm-cov@0.4.0 | |
- uses: taiki-e/install-action@just | |
- name: Install requirements | |
run: sudo env PATH=$PATH just ci-prepare | |
- name: Run Test Coverage for youki | |
run: | | |
cargo llvm-cov clean --workspace | |
cargo llvm-cov --no-report | |
cargo llvm-cov --no-run --lcov --output-path ./coverage.lcov | |
- name: Upload Youki Code Coverage Results | |
uses: codecov/codecov-action@v3 | |
with: | |
file: ./coverage.lcov |