iced/.github/workflows/format.yml
2020-03-21 05:36:51 +01:00

12 lines
270 B
YAML

name: Format
on: [push, pull_request]
jobs:
native:
runs-on: ubuntu-latest
steps:
- uses: hecrj/setup-rust-action@v1
with:
components: rustfmt
- uses: actions/checkout@master
- name: Check format
run: cargo fmt --all -- --check