FeDirect/.forgejo/workflows/ci.yaml
kio beaa76f996
Some checks failed
Build & Test / build-run (push) Failing after 36s
Literal paths
2025-02-03 22:28:00 +00:00

22 lines
548 B
YAML

name: Build & Test
on: [push]
jobs:
build-run:
runs-on: docker
container:
image: alpine
steps:
- name: Get Dependancies
run: apk add rustup deno git nodejs pkgconfig openssl openssl-dev
- name: Install Rust
run: /usr/bin/rustup-init -y
- name: Checkout repo
uses: actions/checkout@v4
with:
deno-version: v2.x
- name: Build using Cargo
run: ~/.cargo/bin/cargo build --verbose
- name: Run unit tests
run: ~/.cargo/bin/cargo test --verbose