try fix tests

This commit is contained in:
MeexReay 2025-05-01 15:02:47 +03:00
parent bf174dcdb1
commit fde9e8d766

21
.gitea/workflows/rust.yml Executable file
View file

@ -0,0 +1,21 @@
name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Build
run: bash -c "cargo build --verbose"
- name: Run tests
run: bash -c "cargo test --verbose"