Summary: The one we're using right now appears to be borked: https://github.com/facebook/flipper/runs/1200221471 Pull Request resolved: https://github.com/facebook/flipper/pull/1567 Test Plan: Watching the CI here. Reviewed By: mweststrate Differential Revision: D24110022 Pulled By: passy fbshipit-source-id: 6b9159ab634417123dc9512b293bbce77faff0f4
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: stable
|
|
- 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
|