Skip to content
This repository has been archived by the owner on Nov 22, 2024. It is now read-only.

Bump rayon from 1.8.1 to 1.10.0 in /packer #19493

Bump rayon from 1.8.1 to 1.10.0 in /packer

Bump rayon from 1.8.1 to 1.10.0 in /packer #19493

Workflow file for this run

name: Packer
# This action runs on 'git push' and PRs
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Setup toolchain
uses: dtolnay/rust-toolchain@stable
# The selection of Rust toolchain is made based on the particular '@rev'
# of this Action being requested. For example "dtolnay/rust-toolchain@nightly"
# pulls in the nightly Rust toolchain, while "dtolnay/[email protected]"
# pulls in '1.42.0'.
- name: Test
run: cd packer && cargo test
- name: Format
run: cd packer && cargo fmt -- --check
continue-on-error: true
- name: Lint
run: cd packer && cargo clippy -- -Dwarnings
continue-on-error: true