rs-basic/.gitea/workflows/cargo.yaml

49 lines
1.5 KiB
YAML
Raw Normal View History

2024-01-12 13:25:32 +01:00
name: Cargo Check, Format, Fix and Test
2024-01-10 20:47:44 +01:00
on: [push, pull_request]
jobs:
2024-01-12 13:25:32 +01:00
check:
name: cargo check
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo check --all-features --all-targets
2024-01-10 21:24:07 +01:00
format:
2024-01-10 21:44:06 +01:00
name: cargo fmt
2024-01-10 21:24:07 +01:00
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: rustup component add rustfmt
2024-01-12 13:25:32 +01:00
- run: cargo fmt --all
2024-01-10 21:24:07 +01:00
- uses: stefanzweifel/git-auto-commit-action@v5
with:
# Optional. Commit message for the created commit.
# Defaults to "Apply automatic changes"
2024-01-12 13:25:32 +01:00
commit_message: CI cargo fmt
fix:
name: cargo fix
2024-01-12 13:25:32 +01:00
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
2024-01-10 20:47:44 +01:00
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
2024-01-12 13:25:32 +01:00
- run: rustup component add rustfmt
- run: cargo fix --all-features --all-targets
- uses: stefanzweifel/git-auto-commit-action@v5
with:
# Optional. Commit message for the created commit.
# Defaults to "Apply automatic changes"
commit_message: CI cargo fix
2024-01-10 21:24:07 +01:00
test:
name: cargo test
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
2024-01-12 13:25:32 +01:00
- run: cargo test --all-features --all-targets