FeDirect/.forgejo/workflows/ci.yaml
kio b4c70c0d16
Some checks failed
Build & Test / build-run (push) Failing after 32s
automate the install
2025-02-03 22:23:06 +00:00

22 lines
522 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 build --verbose
- name: Run unit tests
run: cargo test --verbose