rust_app/.forgejo/workflows/main.yml
continuist 411dc2bc03
Some checks failed
Pipeline main branch / test (push) Failing after 33s
Fix source cargo
2025-04-13 00:19:51 -04:00

20 lines
No EOL
487 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
- name: Install Rust toolchain
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
. "$HOME/.cargo/env"
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose