FeDirect/.forgejo/workflows/ci.yaml
kio 72faa8901c
Some checks failed
Build & Test / build-run (push) Failing after 8s
fix command
2025-02-03 22:13:04 +00:00

20 lines
419 B
YAML

name: Build & Test
on: [push]
jobs:
build-run:
runs-on: docker
container:
image: alpine
steps:
- name: Get Dependancies
run: apk add rust deno git
- 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