FeDirect/.forgejo/workflows/ci.yaml
kio da6d60f94c
Some checks failed
Build & Test / build-run (push) Failing after 8s
Use alpine instead?
2025-02-03 22:12:21 +00:00

20 lines
423 B
YAML

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