Summary: To make sure we're staying in sync with the internal version. Requires some more manual updating, but even if we do this every couple of months, it should be fine. Pull Request resolved: https://github.com/facebook/flipper/pull/1719 Test Plan: CI Reviewed By: nikoant Differential Revision: D25195565 Pulled By: passy fbshipit-source-id: 763a9d877a20659e91c8b77d0900b999e5f630d3
23 lines
498 B
YAML
23 lines
498 B
YAML
name: Packer
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Setup toolchain
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: 1.48.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
|