added gitea workflows
Rust build & run checks / cargo-build-test (push) Failing after 1m26s Details

This commit is contained in:
Sven Vogel 2023-08-18 11:53:21 +02:00
parent 5b24bd80ac
commit 05cd227c3e
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
name: Rust build & run checks
run-name: ${{ github.actor }} is building and running cargo checks
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
cargo-build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Test
run: cargo test --verbose
- name: Clippy
run: cargo clippy --all-features -- -D warnings
- name: Fmt
run: cargo fmt --check