added gitea workflows
Rust build & run checks / cargo-build-test (push) Failing after 1m26s
Details
Rust build & run checks / cargo-build-test (push) Failing after 1m26s
Details
This commit is contained in:
parent
5b24bd80ac
commit
05cd227c3e
|
@ -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
|
Loading…
Reference in New Issue