holy_lisp/.forgejo/workflows/rust.yaml
Apache 10eefc0bab
Some checks failed
Rust / build (push) Failing after 4s
Init
2024-07-15 02:21:21 -05:00

25 lines
395 B
YAML

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: docker
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