Skip to content

replace deprecated rmdir with rm #19923

replace deprecated rmdir with rm

replace deprecated rmdir with rm #19923

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