mirror of
https://github.com/winapps-org/winapps.git
synced 2025-06-04 06:07:19 +02:00
21 lines
394 B
YAML
21 lines
394 B
YAML
name: Rust Check
|
|
|
|
on:
|
|
push:
|
|
branches: [ "rewrite" ]
|
|
pull_request:
|
|
branches: [ "rewrite" ]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
format:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: mirlahiji/rust-action@master
|
|
with:
|
|
args: cd integration-test && cargo fmt -- --check && cargo clippy -- -Dwarnings && cargo test
|