holy_lisp/.forgejo/workflows/rust.yaml
Apache 9ef08d074f
Some checks failed
Rust / build (push) Failing after 28s
Workflow test
2024-07-15 02:28:32 -05:00

25 lines
401 B
YAML

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Setup
run: DEBIAN_FRONTEND=noninteractive apt-get -yq install cargo
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose