Files
neoscim/.gitea/workflows/test.yaml
Rushmore75 052828c89c
Some checks failed
Test Rust project / test (ubuntu-latest, stable) (push) Failing after 57s
auto run test
2026-01-27 11:13:23 -07:00

22 lines
433 B
YAML

name: Test Rust project
on: [push]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
rust: [stable]
steps:
- uses: https://git.oliveratkinson.net/Oliver/setup-rust-action@master
with:
rust-version: ${{ matrix.rust }}
- uses: actions/checkout@master
- name: Run tests
run: cargo test --verbose
- name: Clippy
run: cargo clippy