diff --git a/.github/workflows/packer.yml b/.github/workflows/packer.yml index 0370f5c54..e0a5554d4 100644 --- a/.github/workflows/packer.yml +++ b/.github/workflows/packer.yml @@ -7,18 +7,16 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 + - name: Setup toolchain + uses: actions-rs/toolchain@v1 + with: + toolchain: stable - name: Test - uses: icepuma/rust-action@1.44.0 - with: - args: cd packer && cargo test + run: cd packer && cargo test - name: Format - uses: icepuma/rust-action@1.44.0 + run: cd packer && cargo fmt -- --check continue-on-error: true - with: - args: cd packer && cargo fmt -- --check - name: Lint - uses: icepuma/rust-action@1.44.0 + run: cd packer && cargo clippy -- -Dwarnings continue-on-error: true - with: - args: cd packer && cargo clippy -- -Dwarnings