rust_app/.forgejo/workflows/main.yml
continuist 3bb9abfcd6
Some checks failed
Pipeline main branch / test (push) Failing after 7s
use rust action instead
2025-04-13 00:26:00 -04:00

16 lines
No EOL
339 B
YAML

name: Pipeline main branch
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest # Or other appropriate runner
steps:
- uses: actions/checkout@v4 # Checkout the repository
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: cargo build --release --all-features