Flipper Snapshot Bump: v0.267.2-SNAPSHOT #19939
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: Packer | |
# This action runs on 'git push' and PRs | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3.5.3 | |
- 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/rust-toolchain@1.42.0" | |
# 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 |