Files
gravel/.gitea/workflows/cargo-test.yml
Kerdonov c67d2ab55a
Some checks failed
Build the release program / Cargo build release (push) Failing after 1m49s
gitea workflow fix 4
2025-11-09 23:24:12 +02:00

26 lines
413 B
YAML

name: Test the running changes
on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test
runs-on: rust-latest
steps:
- name: Deps
run: apt-get update -y && apt-get install nodejs -y
- name: Checkout repo
uses: actions/checkout@v4
- name: cargo test
run: cargo test --verbose