This repository has been archived on 2024-07-15. You can view files and clone it, but cannot push or open issues or pull requests.
holy_lisp_archive/.forgejo/workflows/rust.yaml
Apache 743a194d30
Some checks failed
Rust / build (push) Has been cancelled
Naive attempt 4 to adapt rust github workflow
2024-07-15 01:48:56 -05:00

23 lines
341 B
YAML

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-22.04:docker://node:20-bullseye
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose