0
0
mirror of https://github.com/neon-mmd/websurfx.git synced 2024-11-22 14:08:23 -05:00
websurfx/.github/workflows/rustfmt.yml

22 lines
449 B
YAML
Raw Normal View History

name: Rustfmt
on:
push:
branches:
2023-05-13 12:36:11 -04:00
- "**"
pull_request:
branches:
- "rolling"
jobs:
2023-05-13 13:03:07 -04:00
formatting:
name: cargo fmt
runs-on: ubuntu-latest
steps:
2023-05-13 13:03:07 -04:00
- uses: actions/checkout@v3
# Ensure rustfmt is installed and setup problem matcher
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt
- name: Rustfmt Check
2023-05-13 13:07:22 -04:00
uses: actions-rust-lang/rustfmt@v1