Skip to content

Commit

Permalink
Update test file
Browse files Browse the repository at this point in the history
  • Loading branch information
temeddix committed Aug 17, 2023
1 parent a4f264c commit aab2adb
Showing 1 changed file with 24 additions and 7 deletions.
31 changes: 24 additions & 7 deletions .github/workflows/formatting-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ concurrency:
cancel-in-progress: true

jobs:
code:
name: code-files
rust:
name: rust-code
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand All @@ -28,16 +28,33 @@ jobs:
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@stable

- name: Install Clippy
run: rustup component add clippy

- name: Format Rust code
run: cargo clippy --fix

- name: Format Dart code
run: dart format .

- name: Verify Changed files
uses: tj-actions/verify-changed-files@v16
with:
files: >
**/*
dart:
name: dart-code
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup Flutter toolchain
uses: subosito/flutter-action@v2
with:
channel: "stable"

- name: Format Rust code
run: |
rustup component add clippy
cargo clippy --fix
- name: Format Dart code
run: dart format .

Expand Down

0 comments on commit aab2adb

Please sign in to comment.