FeDirect/.forgejo/workflows/ci.yaml
kio 22bbbf0955
Some checks failed
Build & Test / build-run (push) Failing after 53s
add musl-dev
2025-02-03 22:37:46 +00:00

24 lines
719 B
YAML

name: Build & Test
on: [push]
jobs:
build-run:
runs-on: docker
container:
image: alpine
steps:
- name: Get Dependancies
run: apk add --no-cache musl-dev curl gcc deno git nodejs pkgconfig openssl openssl-dev
- name: download Rustup
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain nightly
- name: configure new path
run: source $HOME/.cargo/env
- 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